Search found 1 match

by falcon1082
Sun Oct 31, 2010 5:20 pm
Forum: Volume 109 (10900-10999)
Topic: 10903 - Rock-Paper-Scissors Tournament
Replies: 27
Views: 16338

Re: 10903 - Rock-Paper-Scissors Tournament

i did'n get WA
but i keep getting RE
what's matter with my code?

please help me

#include<iostream>
#define Max 101
#define sMax 11
using namespace std;

struct game
{
int p1, p2;
char h1[sMax], h2[sMax];
} g[Max];

int n, k, win[Max], tie[Max];

int h[256];
int w_s[3][3] = {{0, 1, -1}, {-1, 0 ...

Go to advanced search