void RoundOffTest(double number)
{
// What value would you pass to RoundOffTest() in order to get this output:
// BEFORE number=1.785000 round=178.000000 (round down)
// AFTER NUMBER=1.785000 round=179.000000 (round up)
//
// It seems to round it DOWN.
// But the 2nd line seems to round it UP.
// Isn't that impossible? Wouldn't there be NO possible number you could pass
// this function, and see that output? Or is there?
NSLog(@"BEFORE number=%f round=%f (round down)", number, round(number * 100));
double NUMBER = 1.785000;
NSLog(@"AFTER NUMBER=%f round=%f (round up) ", NUMBER, round(NUMBER * 100));
}
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Set Formatting without roundingTo answer your comment question: use
|
||||
|