w3resource

Java: Inches to meters


Convert Inches to Meters

Write a Java program that reads a number in inches and converts it to meters.

The inch is a unit of length in the (British) imperial and United States customary systems of measurement now formally equal to ​1/36 yard but usually understood as ​1/12 of a foot.

The meter is the base unit of length in some metric systems, including the International System of Units (SI). The SI unit symbol is m.

Note: One inch is 0.0254 meter.

Test Data
Input a value for inch: 1000

Java datatype Exercises: Inches to meters

Sample Solution:

Java Code:

import java.util.Scanner;
public class Exercise2 {

    public static void main(String[] Strings) {

        Scanner input = new Scanner(System.in);

        System.out.print("Input a value for inch: ");
        double inch = input.nextDouble();
        double meters = inch * 0.0254;
        System.out.println(inch + " inch is " + meters + " meters");

    }
}

Sample Output:

Input a value for inch: 1000                                                                                  
1000.0 inch is 25.4 meters

Flowchart:

Flowchart: Java Data Type Exercises - Inches to meters

For more Practice: Solve these Related Problems:

  • Write a Java program to convert a list of inch measurements provided as command-line arguments to meters and then calculate their cumulative sum.
  • Write a Java program to convert inches to meters without using multiplication, employing iterative addition or bitwise shifts where applicable.
  • Write a Java program to validate and convert inches to meters from user input, including error handling for non-numeric values.
  • Write a Java program to convert inches to meters and further convert the result into centimeters and millimeters in a single chained operation.


Go to:


PREV : Convert Fahrenheit to Celsius.
NEXT : Sum of Digits in Integer.


Java Code Editor:

Improve this sample solution and post your code through Disqus

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.