Menu
×
×
Correct!
Exercise:Use the correct function to round the number
#include <iostream>
#include <@(5)>
using namespace std;
int main() {
cout << @(5)(2.6);
return 0;
}
#include <iostream>
#include <cmath>
using namespace std;
int main() {
cout << round(2.6);
return 0;
}
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 58 exercises.
Are you sure you want to continue?