This is the code that I have to refactor for my homework:
if (state == TEXAS) {
rate = TX_RATE;
amt = base * TX_RATE;
calc = 2 * basis(amt) + extra(amt) * 1.05;
} else if ((state == OHIO) || (state == MAINE)) {
rate = (state == OHIO) ? OH_RATE : MN_RATE;
amt = base * rate;
calc = 2 * basis(amt) + extra(amt) * 1.05;
if (state == OHIO)
points = 2;
} else {
rate = 1;
amt = base;
calc = 2 * basis(amt) + extra(amt) * 1.05;
}
I have done something like this
if (state == TEXAS) {
rate = TX_RATE;
calculation(rate);
}
else if ((state == OHIO) || (state == MAINE))
{
rate = (state == OHIO) ? OH_RATE : MN_RATE;
calculation(rate);
if (state == OHIO)
points = 2;
}
else {
rate = 1;
calculation(rate);
}
function calculation(rate)
{
amt = base * rate;
calc = 2 * basis(amt) + extra(amt) * 1.05;
}
How could I have done better?
Edit i have done code edit
amt = base * rate;
Lindentto make it legible, it complained of an unmatchedelsein the second block -- becauseif (state == OHIO)appears to be missing a{. I didn't really want to add it myself, because the{might need to go elsewhere. (Unlikely, but still.) Please add the{as needed. – sarnold Nov 19 '11 at 9:19stateto refer to US states, not state machine states, andTX_RATEbeing Texas tax rate, not transmission rate. (Just the teacher being cute?) – Potatoswatter Nov 19 '11 at 11:01iforcaseorswitch. +1 for a good question. – Shahzeb Feb 14 '12 at 5:53