Cod sursa(job #741890)

Utilizator CrescentselectJicol Crescent Crescentselect Data 27 aprilie 2012 12:13:20
Problema Numarare triunghiuri Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.32 kb
#include<iostream>
#include<fstream>
using namespace std;

char sir[100005];
int nr;

ifstream f("expresie.in");
ofstream g("expresie.out");

void citire()
{
	while(!f.eof())
	{
		nr++;
		f>>sir[nr];
	}
}
void procesare()
{
	
}
int main()
{
	return 0;
	citire();
	
	f.close();
	g.close();
	return 0;
}