MCQOPTIONS
Saved Bookmarks
| 1. |
The correct way to round off a floating number x to an integer value is |
| A. | y = int (x + 0.5) |
| B. | y = (int) (x + 0.5) |
| C. | y = (int) x + 0.5 |
| D. | y = (int) ((int)x + 0.5) |
| Answer» C. y = (int) x + 0.5 | |