Run ❯
Get your own website
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
#include
#include
using namespace std; int main() { cout << round(0.60) << "\n"; cout << round(0.40) << "\n"; cout << round(5) << "\n"; cout << round(5.1) << "\n"; cout << round(-5.1) << "\n"; cout << round(-5.9) << "\n"; return 0; }
1
0
5
5
-5
-6