Use the correct function to round the number 2.6
to its nearest integer.
#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;
}