vote up -1 vote down star
1

How do I write a program that takes a positive number with a fractional part and rounds it to two decimal places?

flag
7  
With a good text editor and a keyboard. – Chris Lutz Sep 21 at 2:13
Hi Mark, this really sounds like a homework question. If so, could you please edit it and add the tag "homework". – Todd Owen Sep 21 at 2:16
got thatttttttttttttttttttttttttttttttt – Mark m Sep 21 at 2:16
Homework by any chance? – hhafez Sep 21 at 2:19
Yeah it is, I'm trying to figure out where to start. I have some basic stuff down already. – Mark m Sep 21 at 2:21
show 2 more comments

4 Answers

vote up -1 vote down

Depends on if you want to truncate the value or use the 3 decimal place to change the second decimale place (known as 4/5 rounding if I recall correctly). For example 0.66666 would be rounded to .67 if there was two places.

For that, you would want to add 0.5 to the value. Pseudo code

a = 0.6666;
b = float ( int( a * 100 + 0.5 ) / 100.0)

where int truncates to the nearest integer.

If you need 5/4 rounding you would add 0.4 instead of 0.5.

link|flag
vote up 0 vote down

Depends on the format of the input, but here is one way:

double round_two( double n )
{
    return round(n*100.0)/100.0;
}
link|flag
vote up 3 vote down

This sounds awfully lot like homework. I'm not sure how you want the user to input a number, or how you want to return the results, but some functions to help you:

  • scanf() and friends are good for reading formatted input, like reading numbers from a text file into an int or a float (or anything else, really).
  • printf() and friends are good for doing the opposite - writing formatted output to files or strings. They have a lot of options for controlling precision of floats and things.
  • round(), ceil(), and floor() may help you for more general purposes if you don't want to have to rely on printf()/scanf() formatting.
link|flag
vote up 6 vote down

You use round(). And since it only goes to the nearest integer, you multiply and divide by factors of ten to make it come out right.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.