Convert Grams To Pounds

In this section, you will learn to convert Grams To Pounds. The following program helps you in converting Grams To Pounds.

Convert Grams To Pounds

In this section, you will learn to convert Grams To Pounds. The following program helps you in converting Grams To Pounds.

Convert Grams To Pounds

Convert Grams To Pounds

     

In this section, you will learn to convert Grams To Pounds. The following program helps you in converting Grams To Pounds. 

Code Description:

To convert Grams To Pounds we have used a formula "pound = gram * 0.00220462262;". 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 GmsToPounds{
  public static void main (String[] args)throws Exception{
  //1 gram = 0.00220462262 pounds;
  BufferedReader bf = new BufferedReader(new 
 
InputStreamReader(System.in));
  System.out.println("Enter the Grams:");
  int gram = Integer.parseInt(bf.readLine());
  double pound = gram * 0.00220462262;
  System.out.println("Pound: " + pound);
  }
}

Output of the program:

C:\unique>javac GmsToPounds.java

C:\unique>java GmsToPounds
Enter the Grams:
2
Pound: 0.00440924524

C:\unique>

Download this example.