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> |
|
Recommend the tutorial |

Ask Questions? Discuss: Convert Inches to Centimeters View All Comments
Post your Comment