Replace Magic Numbers with Named Constants

The reader shouldn't have to guess or assume what a seemingly innocent valueś purpose is. The exception would be for known or obvious formulas/code, such as

double milesWalked = feetWalked/5280.0;
int dailyPay = hourlyRate * 8;
double circumference = radius * Math.PI * 2;



bj 2019-09-22