We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4f426d commit d72d301Copy full SHA for d72d301
README.md
@@ -89,13 +89,12 @@ Specify options for compiler or linker with "CompileOptions: " word. In this exa
89
#include <iostream>
90
#include <cmath>
91
#include <cstdlib>
92
-using namespace std;
93
94
int main(int argc, char *argv[])
95
{
96
if (argc != 2) return 0;
97
98
- cout << sqrt(atoi(argv[1])) << endl;
+ std::cout << sqrt(atoi(argv[1])) << std::endl;
99
return 0;
100
}
101
// CompileOptions: -lm
0 commit comments