This commit is contained in:
2025-02-04 08:13:18 +03:00
parent bb35fb2db6
commit 8e36a1a11c
6 changed files with 142 additions and 2 deletions

View File

@ -19,7 +19,7 @@ int main(void){
}
while(b > 1 && b < a) {
printf("*");
while(c < a) {
while(c < a-1) {
printf(" ");
c++;
}
@ -38,4 +38,4 @@ int main(void){
b++;
}
return 0;
}
}