Search found 1 match

by soff
Wed Mar 14, 2007 10:51 am
Forum: Volume 102 (10200-10299)
Topic: 10267 - Graphical Editor
Replies: 190
Views: 77325

10267 - Graphical Editor

Please have a look at the following code, it has passed test cases I found on the forum, but still gets WA...


#include <stdio.h>

#define MAX 252

char canvas[MAX][MAX];
int m, n;

void create() {
int i, j;

scanf("%d %d", &m, &n);

for (i = 0; i < n; i++) {
for (j = 0; j < m; j++) {
canvas ...

Go to advanced search