Cod sursa(job #612105)
Utilizator | Data | 5 septembrie 2011 19:58:42 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
int main () {
ofstream g ("adunare.out");
g << "234";
g.close ();
ifstream f ("adunare.out");
int x;
f >> x;
f.close ();
return 0;
}