Results 1 to 4 of 4
- 10-20-2011, 04:07 PM #1
Member
- Join Date
- Oct 2011
- Posts
- 24
- Rep Power
- 0
Small Problem With a Maths Program
Program works grand except it gives looser numbers as answers, rather than exact.
I.e. it should add the three numbers and give the answer of 16.3
and it should multiply and subtract and give answer 118.24
Instead it gives 16.2999999xxxxxxxxx
and 118.23999999xxxxxx
How do I tighten it up?
Java Code:public class VariableDifference { public static void main (String[] args) { double num1=3.1f; double num2=6.2f; double num3=7.0f; double sum = num1+num2+num3; double sum1 = num1*num2*num3-num1-num2-num3; System.out.println("The variable sum contains the value " + sum); System.out.println("The variable difference contains the value " + sum1); System.exit(0); } }
- 10-20-2011, 04:37 PM #2
Re: Small Problem With a Maths Program
Sounds like a job for DecimalFormat or the printf method: PrintStream (Java Platform SE 6)
How to Ask Questions the Smart Way
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!
- 10-20-2011, 04:57 PM #3
Member
- Join Date
- Oct 2011
- Posts
- 24
- Rep Power
- 0
Re: Small Problem With a Maths Program
Ah right, I think I should be careful over that. My lecturer hasn't covered that yet so he might think I've been cheating!
- 10-21-2011, 07:29 AM #4
Member
- Join Date
- Oct 2011
- Posts
- 10
- Rep Power
- 0
Re: Small Problem With a Maths Program
I wouldn't consider it cheating if you went ahead and did some out of class research to learn more about programming. I'm taking AP Computer Science at my high school and I'm a full semester ahead of my other classmates since I have been teaching myself through YouTube, Google, and referring to later chapters in the book. Good luck though!
Similar Threads
-
Help me with maths on my program!
By Ruuhkis in forum New To JavaReplies: 6Last Post: 02-17-2011, 06:27 AM -
I need help doing a small program.
By fastcar83 in forum New To JavaReplies: 7Last Post: 11-03-2010, 10:00 PM -
Small calender program
By Moustafa taha in forum New To JavaReplies: 1Last Post: 10-19-2010, 07:52 PM -
Please HELP Java small program
By afrttoh in forum New To JavaReplies: 14Last Post: 11-08-2008, 02:29 AM -
small issues with a program
By jimJohnson in forum New To JavaReplies: 6Last Post: 04-25-2008, 08:28 AM


1Likes
LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks