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