Convert Kilograms To Pounds

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

Convert Kilograms To Pounds

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

Convert Kilograms To Pounds

Convert Kilograms To Pounds

     

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

Code Description:

To convert Kilograms To Pounds we have used a formula "pound = kilo * 2.20462262;". The compiler will ask to enter the number of Kilograms from the keyboard due to the method  "
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));". Here we have taken kilo 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 kgsToPounds {

  public static void main (String[] args)throws Exception{
  //1 kilograms = 2.20462262 pounds;
  BufferedReader bf = new BufferedReader(new 
 
InputStreamReader(System.in));
  System.out.println("Enter the Kilogram:");
  int kilo = Integer.parseInt(bf.readLine());
  double pond = kilo * 2.20462262;
  System.out.println("Pounds: " + pound);
  }
}

Output of the program:

C:\unique>javac kgsToPounds.java

C:\unique>java kgsToPounds
Enter the Kilogram:
2
Pounds: 4.40924524

C:\unique>

Download this example.