Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials:
 

Software Solutions and Services
 

 
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments
 
Convert Float to Integer 
 

In this section, we will learn to convert a float type data into an integer.

 

Convert Float to Integer

                         

In this section, we will learn to convert a float type data into an integer. 

Code Description:

In this program, first of all we declare a float variable named 'f'. Which is stored the value  '10.0F'. Here the is the '10.0F' is used for  representing the float type number. If the F can't be applied at the end of the value, the result has been a double and it is not a float. 

For converting the float type value into an integer, we simply applied the type casting process and get the integer value.

Here is the code of this program:

public class  FloatToInt{
  static float f = 10.0F;
  
  public static void main(String arg[]){
    int i = (int)f;
    System.out.println("Float data: " + f);
    System.out.println("Integer data: " +i);
  }
}

Download this program:

Output this program.

 C:\corejava>java FloatToInt
 9,9.0
C:\corejava>

                         

» View all related tutorials
Related Tags: c convert io help this program to learn ram ear e il it section li in converting m ps all

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Website Designing Services
 
Web Designing Packages From $150!
 
Website Designing Company Web Hosting
 
Website Designing Quotation
 
Search Tutorials:

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.