Cod sursa(job #1803379)
Utilizator | Data | 11 noiembrie 2016 12:55:44 | |
---|---|---|---|
Problema | Dezastru | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("dezastru.in");
FILE * g=fopen("dezastru.out" , "w");
float x;
int main()
{
f>>x;
cout<<x;
fprintf(g,"%.6f",x);
return 0;
}