Results 1 to 3 of 3
Thread: [SOLVED] Code Explaination Help
- 12-12-2008, 11:10 PM #1
Member
- Join Date
- Dec 2008
- Posts
- 5
- Rep Power
- 0
[SOLVED] Code Explaination Help
I am trying to learn Java and I have been looking at a lot of code samples. I ran across this and I hope that some kind soul will explain the symbols and their meanings.
The code in the "printf" statements do not mean much to me and it would help me a lot if you could explain a couple of them to me as if I was "12 year old".Java Code:public class BasicMathDemo { public static void main(String[] args) { double a = -191.635; double b = 43.74; int c = 16, d = 45; System.out.printf("The absolute value of %.3f is %.3f%n", a, Math.abs(a)); System.out.printf("The ceiling of %.2f is %.0f%n", b, Math.ceil(b)); System.out.printf("The floor of %.2f is %.0f%n", b, Math.floor(b)); System.out.printf("The rint of %.2f is %.0f%n", b, Math.rint(b)); System.out.printf("The max of %d and %d is %d%n",c, d, Math.max(c, d)); System.out.printf("The min of of %d and %d is %d%n",c, d, Math.min(c, d));
Thanks
- 12-12-2008, 11:27 PM #2
Come on...
What you are showing is the sample that the Sun Tutorials gives for explaining the math class. Look one topic before (Formatting Numeric print output) and it's all explained there. Just in case you have trouble finding it, here's the link:
Formatting Numeric Print Output (The Java™ Tutorials > Learning the Java Language > Numbers and Strings)
CJSLChris S.
Difficult? This is Mission Impossible, not Mission Difficult. Difficult should be easy.
- 12-12-2008, 11:31 PM #3
Member
- Join Date
- Dec 2008
- Posts
- 5
- Rep Power
- 0
Similar Threads
-
log in code
By kevN in forum New To JavaReplies: 0Last Post: 11-17-2008, 10:05 AM -
Tiles process flow explaination needed...
By abhishek paul in forum Web FrameworksReplies: 0Last Post: 04-29-2008, 04:02 PM -
code for £20;-)
By sparky2003752 in forum JCreatorReplies: 0Last Post: 04-17-2008, 05:31 PM -
I need help fixing my code.. or non code?
By MrHuggykins in forum New To JavaReplies: 1Last Post: 03-19-2008, 10:12 PM -
Generating Code Automatically Using Custom code Template In Eclipse
By JavaForums in forum EclipseReplies: 1Last Post: 04-26-2007, 03:52 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks