Home /
Expert Answers /
Computer Science /
i-need-java-code-5-12-lab-speeding-ticket-write-a-program-that-is-given-two-integers-representing-pa714
(Solved): I need JAVA code
5.12 LAB: Speeding ticket Write a program that is given two integers representing ...
I need JAVA code
5.12 LAB: Speeding ticket Write a program that is given two integers representing a speed limit and driving speed in miles per hour (mph) and outputs the traffic ticket amount. Driving 10 mph under the speed limit (or slower) receives a \( \$ 50 \) ticket. Driving \( 6-20 \mathrm{mph} \) over the speed limit receives a \( \$ 75 \) ticket. Driving \( 21-40 \mathrm{mph} \) over the speed limit receives a \( \$ 150 \) ticket. Driving faster than \( 40 \mathrm{mph} \) over the speed limit receives a \( \$ 300 \) ticket. Otherwise, no ticket is received. Ex: If the input is: \[ 3545 \] the output is: \[ 75 \] Ex: If the input is: \[ 3526 \]