Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Linux Archive
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 07-22-2007, 10:33 PM
zoe zoe is offline
Member
 
Join Date: Jul 2007
Posts: 40
zoe is on a distinguished road
Using int/int, 7/5 would return 1
I'm programming in Java. I'm trying to make a program that inputs money (as a double) and determines the amount of different coins to give.
My problem is, I input a value as a double, and try to divide by a number to get the number of times it goes into that number, and get a remainer.
For example, using int/int, 7/5 would return 1.
But dividing double/double 7.0/5.0 returns an exact double. How to i get int "1" out of that?
Thanks.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 07-25-2007, 10:45 PM
Member
 
Join Date: Jul 2007
Posts: 55
Seemster is on a distinguished road
double x = 12;
int y = new Double(x).intValue();
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
return out of scope? another_steve New To Java 5 01-28-2008 11:34 PM
if..else..return mqdias New To Java 1 08-10-2007 06:20 PM
there is no return statement gabriel New To Java 1 08-03-2007 08:24 PM
Return value of method cachi New To Java 1 08-01-2007 10:23 AM
Return to try block Freddie New To Java 2 05-11-2007 10:58 PM


All times are GMT +3. The time now is 11:23 AM.


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