In this section, you will learn to convert Grams To kilograms. The following program helps you in converting Grams To kilograms.
Convert Grams To Kilograms
In this section, you will learn to convert Grams To kilograms.
The following program helps you in converting Grams To kilograms.
Code Description:
To convert Grams To kilograms we have used a formula "kilogram = gram *
0.001;". The compiler will ask to enter the number of Grams from the
keyboard due to the method "BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));".
Here we have taken gram 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:
|
Output of the program:
C:\unique>javac GmsTokgs.java C:\unique>java GmsTokgs Enter the Grams:1 kilogram: 0.0010 C:\unique>java GmsTokgs Enter the Grams:10 kilogram: 0.01 C:\unique> |