Search found 1 match

by kabanek
Mon May 24, 2010 10:16 pm
Forum: Volume 101 (10100-10199)
Topic: 10188 - Automated Judge Script
Replies: 58
Views: 37424

Re: 10188 - Automated Judge Script

I have a problem. This is my code:
//problem no. 110305

//porównywanie wiersz po wierszu a nie wszystko naraz
#include <iostream>
#include <ctype.h>
#include <string>

using namespace std;

enum Verdict
{
AC,
PE,
WA
};

int main()
{
int n, m,
run = 0;

cin>>n;
cin.get();

Verdict verd ...

Go to advanced search