Home Java Java-conversion Convert Grams To Kilograms



Convert Grams To Kilograms
Posted on: February 27, 2008 at 12:00 AM
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:

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

class GmsTokgs{
  public static void main (String[] args)throws Exception{
  //1 gram = 0.001 kilogram;
  BufferedReader bf = new BufferedReader(new 
  InputStreamReader
(System.in));
  System.out.print("Enter the Grams:");
  int gram = Integer.parseInt(bf.readLine());
  double kilogram = gram * 0.001;
  System.out.println("kilogram: " + kilogram);
  }
}

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>

Download this example.

Related Tags for Convert Grams To Kilograms:
cconvertiohelpthislogprogramtolearnrameareilsectioninconvertingmpsproskisllfolloweaarrtwingssthpronogrolo


More Tutorials from this section

Ask Questions?    Discuss: Convert Grams To Kilograms  

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.