summaryrefslogtreecommitdiff
path: root/mario.c
blob: ddb4610a6e7bb90ec5d1bd141c1b76d5b265445e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <cs50.h>

int main(void)
{
    int n = get_int("Size: ");
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            printf("#");
        }
        printf("\n");
    }
}