Home Java Java-conversion Convert Integer to Double



Convert Integer to Double
Posted on: July 4, 2007 at 12:00 AM
In this section, you will learn to convert an integer into a double.

Convert Integer to Double 

     

In this section, you will learn to convert an integer into a double. The the java.lang package provides the functionality for converting an integer type data into a double.

Code Description:

This program helps you in converting an integer type data into a double. Define a class named "IntegerToDouble" for java component. Program takes an integer value at the console and it converts an integer type data into a double using the toString() method. This method returns a string representation of a double object. It converts a double into a string and also vice-versa.

Here is the code of this program:

import java.io.*;
import java.lang.*;

public class IntegerToDouble {
  public static void main(String[] argsthrows IOException{
  BufferedReader buff = 
  new 
BufferedReader(new InputStreamReader(System.in))
  System.out.println("Enter the integer value:");
  String d = buff.readLine();
  String s = new Double(d).toString();  
  System.out.println("Double:=" + s);
  }
}

Download this program:

Output of  this program given below.

C:\corejava>java IntegerToDouble
Enter the integer value:
24
Double:=24.0
C:\corejava>

Related Tags for Convert Integer to Double:
javacstringcomideclassdatafunctionconsoleconvertfuniohelpintegermethodtypedoublevicomponentvaluenameusingoleintthisidpackagefunctionaldefinetostringforuncprogramtoramlaneitdeslipeinconvertingasmntpstrososjpackclesfuncagenamedmeintoproackdossoatpackisfunctionalityandconsstrrtrtsvassriringthavstalufinprndonomogrolo


More Tutorials from this section

Ask Questions?    Discuss: Convert Integer to Double   View All Comments

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.