diff options
Diffstat (limited to 'wk1')
-rw-r--r-- | wk1/pset1/mario-more/mario.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wk1/pset1/mario-more/mario.c b/wk1/pset1/mario-more/mario.c index 4bc2183..810048a 100644 --- a/wk1/pset1/mario-more/mario.c +++ b/wk1/pset1/mario-more/mario.c @@ -33,7 +33,7 @@ void print_grid(size) { if ((size - (j + i)) > 1) { - printf(" "); + printf("!"); } else { @@ -46,7 +46,7 @@ void print_grid(size) } else { - printf(" "); + printf("!"); } } printf(" "); |