Home Java Java-conversion Convert Feet To Meters



Convert Feet To Meters
Posted on: February 27, 2008 at 12:00 AM
In this section, you will learn to convert Feet to Meters. The following program helps you in converting Feet to Meters.

Convert Feet To Meters

     

In this section, you will learn to convert Feet to Meters. The following program helps you in converting Feet to Meters. 

Code Description:

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

Output of the program:

C:\unique>javac FeetToMtrs.java

C:\unique>java FeetToMtrs
Enter the Feet:1
Meters: 0.3048

C:\unique>

Download this example.

Related Tags for Convert Feet To Meters:
cconvertiohelpthisprogramtolearnrameareilsectioninconvertingmpsmeproseeisllmeterfolloweaarrtwingssthfepronogrolo


More Tutorials from this section

Ask Questions?    Discuss: Convert Feet To Meters  

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.