Pagini recente » Cod sursa (job #2138059) | Cod sursa (job #2950399) | Cod sursa (job #827489) | Cod sursa (job #2794575) | Cod sursa (job #792306)
Cod sursa(job #792306)
#include <iostream>
#include <stdlib.h>
#include <fstream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
ifstream fin("invers.in");
ofstream fout("invers.out");
long int t;
while(fin>>t)
{
fout<<"DA"<<endl;
}
return 0;
}