Question: 1 2 . 1 0 LAB: Step counter - exceptions A pedometer treats walking 2 , 0 0 0 steps as walking 1 mile. Write

12.10 LAB: Step counter - exceptions
A pedometer treats walking 2,000 steps as walking 1 mile. Write a stepsToMiles() method that takes the number of steps as an integer parameter and returns the miles walked as a double. The stepsToMiles() method throws an Exception object with the message "Exception: Negative step count entered." when the number of steps is negative. Complete the main() method that reads the number of steps from a user, calls the stepsToMiles() method, and outputs the returned value from the stepsToMiles() method. Use a try-catch block to catch any Exception object thrown by the stepsToMiles() method and output the exception message.
Output each floating-point value with two digits after the decimal point, which can be achieved as follows:
System.out.printf("%.2f", yourValue);
Ex: If the input of the program is:
5345
the output of the program is:
2.67
Ex: If the input of the program is:
-3850
the output of the program is:
Exception: Negative step count entered.
LAB ACTIVITY
12.10.1: LAB: Step counter - exceptions
Only show failing tests
1:Compare output
1:Compare output
Output is nearly correct, but whitespace differs. See highlights below.
Special character legend
Input
Your output
Expected output
here is my code
import java.util.Scanner;
public class LabProgram {
// Method to convert steps to miles
public static double stepsToMiles(int steps) throws Exception {
if (steps 0){
throw new Exception("Exception: Negative step count entered.");
}
return steps /2000.0;
}
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int steps = scnr.nextInt(); // Read the number of steps from the user
try {
// Call the stepsToMiles method and output the result
System.out.printf("%.2f", stepsToMiles(steps));
} catch (Exception e){
// Output the exception message if negative steps are entered
System.out.println(e.getMessage());
}
scnr.close(); // Close the scanner
}
}
1 2 . 1 0 LAB: Step counter - exceptions A

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!