Convert Pounds To Kilograms

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

Convert Pounds To Kilograms

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

Convert Pounds To Kilograms

Convert Pounds To Kilograms

     

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

Code Description:

To convert Pounds To Kilograms we have used a formula "kilo = pound * 0.45;". The compiler will ask to enter the number of Pounds from the keyboard due to the method  "
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));". Here we have taken pound 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 PoundsTokg{
  public static void main (String[] args)throws Exception{
  //1 Pounds = 0.45 Kg;
  BufferedReader bf = new BufferedReader(new 
  InputStreamReader
(System.in));
  System.out.println("Enter the Pounds:");
  int pound = Integer.parseInt(bf.readLine());
  double kilo = pound * 0.45;
  System.out.println("Kilo: " + kilo);
  }
}

Output of the program:

C:\unique>javac PoundsTokg.java

C:\unique>java PoundsTokg
Enter the Pounds:
2
Kilo: 0.9

C:\unique>

Download this example.