Menu
×
×
Correct!
Exercise:Use the correct function to round the number
#include <iostream>
#include <cmath>
using namespace std;
int main() {
cout << round(2.6);
return 0;
}
Not CorrectClick here to try again. Correct!Next ❯#include <iostream> #include <> using namespace std; int main() { cout << (2.6); return 0; } |