blob: c1fb9dffc47daf87172fff4745839641e98d390b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stdio.h>
#include <cs50.h>
int main(void)
{
const int n = 3;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
printf("#");
}
printf("\n");
}
}
|