How do I write a program that takes a positive number with a fractional part and rounds it to two decimal places?
|
1
|
|||||||||||||
|
|
|
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
where int truncates to the nearest integer. If you need 5/4 rounding you would add 0.4 instead of 0.5. |
||
|
|
|
|
Depends on the format of the input, but here is one way:
|
||
|
|
|
|
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:
|
||
|
|
|
|
You use |
||
|
|
