This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
double d=3.95;
System.out.printf("%.1f",d);
output is 4........
so 3.95 gets rounded to 4.....3.91 to 3.92 is rounded to 3.9 and 3.95 to 3.99 is rounded to 4.0
output is 124 4.0
is there any other rule that i should know about or this is it......