Menu
×
×
Correct!
Exercise:Use the correct function to print the square root of
#include <iostream>
#include <@(5)>
using namespace std;
int main() {
int x = 64;
cout << @(4)(x);
return 0;
}
#include <iostream>
#include <cmath>
using namespace std;
int main() {
int x = 64;
cout << sqrt(x);
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?