Question: You are tasked with creating a mileage calculator to computer the amount of money that should be paid to employees. The mileage is computed as
You are tasked with creating a mileage calculator to computer the amount of money that should be paid to employees. The mileage is computed as follows An amount of .25 for each mile up to 100 miles An amount of .15 for every mile above 100. So 115 miles would be (.25 * 100) + (.15 * 15) This can all be coded using a mathematical solution but I want you to use the CONDITIONAL operator. Here is how you are to implement it: If the total miles input is less than or equal to 100 then simply calculate the miles * .25 and output the amount otherwise compute the total amount for all miles mathematically. Use the getCurrencyInstance method of the NumberFormat class to output the value in dollars and cents. Java
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
