in java
A pedometer treats walking 2,000 steps as walking 1 mile. Write a program whose input is the number of steps, and whose output is the miles walked.
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 is:
5345
the output is:
2.67
Your program must define and call a method:
public static double stepsToMiles(int userSteps)
import java.util.Scanner;
public class MyClass {
public static double stepsToMiles(int userSteps){
return userSteps/2000.0;
}
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
//Uncomment to show prompt
//System.out.println("Enter steps: ");
int steps = sc.nextInt();
System.out.printf("%.2f", stepsToMiles(steps));
}
}
Get Answers For Free
Most questions answered within 1 hours.