Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- using namespace std;
- int main ()
- {
- float a ;
- cout << "Enter a number" << endl;
- cin >> a;
- cout << endl << "The nearest integral value = " << round(a);
- }
Advertisement
Add Comment
Please, Sign In to add comment