Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-05-2007, 05:05 PM
Member
 
Join Date: Jul 2007
Posts: 40
trill is on a distinguished road
Help with convert a double type number
Hi, Is there a way in Java that I can convert a double type number such as 3.1111111111222 to only two decimal places? So it would be as 3.11 only?

Another question is how to do Stop a method from running in Java Code?
For example.. I'm doing a loop.. and a user input a 'char' type.
If it's match, it stop execute, other while it keeps going.
I know have to use input, and if and else statement.
Which I already did.. But I need a method to stop from running.
Thanks.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 08-06-2007, 09:48 AM
Senior Member
 
Join Date: Jul 2007
Posts: 1,189
hardwired is on a distinguished road
Code:
import java.text.NumberFormat; import java.util.Scanner; public class Test { public static void main(String[] args) { NumberFormat nf = NumberFormat.getInstance(); nf.setMaximumFractionDigits(2); //nf.setMinimumFractionDigits(2); System.out.println(nf.format(3.1111111111222)); Scanner scanner = new Scanner(System.in); String response; do { System.out.println("Continue? \"y\""); response = scanner.nextLine(); } while(response.equals("y")); }
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Validate/Convert a number using the current Locale() Java Tip Java Tips 0 03-01-2008 11:01 PM
How do I convert a decimal value to hexadecimal with double precision (64 bit) SKaur New To Java 7 01-12-2008 10:02 PM
convert string to a double? javaMike Advanced Java 2 11-27-2007 04:10 AM
type mismatch: cannot convert from double to float bugger New To Java 2 11-16-2007 02:24 PM
how to convert String number to int gabriel New To Java 3 08-02-2007 05:46 AM


All times are GMT +3. The time now is 05:54 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org