Search found 1 match

by shelly
Sun Oct 19, 2003 7:54 pm
Forum: Volume 2 (200-299)
Topic: 201 - Squares
Replies: 32
Views: 8109

help 201 WA

i got WA every times Q_Q
please help
thx :wink:


#include <iostream.h>

void init_array(int H[][11], int V[][11])
{
int i,j;
for (i=0;i<11;i++)
for (j=0;j<11;j++){
H[i][j] = 0;
V[i][j] = 0;
}
}
void init_count(int Size[])
{
for (int i=0;i<11;i++)
Size[i]=0;
}

int main()
{
int i,j,k,t ...

Go to advanced search