Block
Sun Nov 19 2023 07:44:34 GMT+0000 (Coordinated Universal Time)
Saved by
@bobomurod01
#include<stdio.h>
#include<cs50.h>
int main(void){
do{
const int n = get_int("Size: ");
}
while(n<1);
for(int i=0;i<n;i++){
for(int j=0;j<2*(n-1);j++){
printf("#");
}
printf("\n");
}
}
content_copyCOPY
Comments