Home Java Java-conversion Convert Inches To Meters



Convert Inches To Meters
Posted on: February 27, 2008 at 12:00 AM
In this section, you will learn to Inches To Meters. The following program helps you in converting Inches To Meters.

Convert Inches To Meters

     

In this section, you will learn to Inches To Meters. The following program helps you in converting Inches To Meters. 

Code Description:

To convert Inches To Meters we have used a formula "meters = inches * 0.0254;". The compiler will ask to enter the number of inches from the keyboard due to the method  "
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));". Here we have taken inches to be of type int. To avoid loss of precession we have cast the output to be in double.

Here is the code of the program:

import java.io.*;
import java.util.*;

class InchesToMtrs{
  public static void main (String[] args)throws Exception{
  // 1 inch = 0.0254 meters;
  BufferedReader bf = new BufferedReader(new 
 
InputStreamReader(System.in));
  System.out.print("Enter the Inches:");
  int inches = Integer.parseInt(bf.readLine());
  double meters = inches * 0.0254;
  System.out.println("Meters:" + meters);
  }
}

Output of the program:

C:\unique>javac InchesToMtrs.java

C:\unique>java InchesToMtrs
Enter the Inches:1
Meters:0.0254

C:\unique>java InchesToMtrs
Enter the Inches:10
Meters:0.254

C:\unique>

Download this example.

 

Related Tags for Convert Inches To Meters:
cconvertiohelpthisprogramtolearnrameareilsectioninconvertingmpsesmeprosincisllmeterfolloweaarrtwingssthpronogrolo


More Tutorials from this section

Ask Questions?    Discuss: Convert Inches To Meters  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.