Answer to Question #145309 in Java | JSP | JSF for Hamza saeed

Question #145309
Suppose that overSpeed and fine are double variables. Assign the value
to fine as follows: If 0 < overSpeed <= 5, the value assigned to fine is
$20.00; if 5 < overSpeed <= 10, the value assigned to fine is $75.00; if 10 <
overSpeed <= 15, the value assigned to fine is $150.00; if overSpeed > 15,
the value assigned to fine is $150.00 plus $20.00 per mile over 15.
1
Expert's answer
2020-11-20T10:11:33-0500
if (overSpeed > 0 && overSpeed <= 5) {
    fine = 20;
} else if (overSpeed > 5 && overSpeed <= 10) {
    fine = 75;
} else if (overSpeed > 10 && overSpeed <= 15) {
    fine = 150;
} else if (overSpeed > 15) {
    fine = 150 + 20*(overSpeed - 15);
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS