Cod sursă (job #240435)
Utilizator |
|
IP | ascuns |
---|---|---|---|
Problemă | Sqrt (clasele 9-10) | Compilator | cpp | 0,19 kb |
Rundă | Arhiva de probleme | Status | evaluat |
Dată | 13 mai 2016 11:57:45 | Scor | 0 |
#include <fstream>
#include <cmath>
using namespace std;
ifstream in("sqrt.in");
ofstream out("sqrt.out");
int main()
{
int n;
in>>n;
out<<sqrt(n);
return 0;
}