Cod sursă (job #335259)
Utilizator |
|
IP | ascuns |
---|---|---|---|
Problemă | Sqrt (clasele 9-10) | Compilator | cpp | 0,22 kb |
Rundă | Arhiva de probleme | Status | evaluat |
Dată | 28 dec. 2017 17:56:43 | Scor | 0 |
#include <iostream>
#include <fstream>
#include <cmath>
using namespace std;
int main()
{
ifstream f("sqrt.in");
ofstream g("sqrt.out");
long long int n;
f>>n;
g<<sqrt(n);
return 0;
}