#include <iostream> #include <cmath> using namespace std; int main() { double num1 = 4.8; double num2 = 4.3; cout << round(num1) << endl; // --> 5 cout << round(num2) << endl; // --> 4 }