In this section, you will learn to convert Inches to Centimeters, Feet to Meters and Miles to Kilometers. The following program helps you in converting one unit to another.
Convert Inches To Centimeters
In this section, you will learn to convert Inches to Centimeters.
The following program helps you in converting Inches to Centimeters.
Code Description:
To convert Inches to Centimeters we have used a formula "cm =
inches * 2.54;". 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 float. To avoid loss of
precession we have cast the output to be in float.
Here is the code of the program:
|
Output of the program:
C:\unique>javac InchesToCms.java C:\unique>java InchesToCms Enter the inches: 1 1.0 inches is 2.54 centimeter(s). C:\unique> |