Resolved merge conflict and removed .out files

This commit is contained in:
k0rrluna 2025-02-07 03:13:42 +03:00
commit 24d05e18d6

View File

@ -1,11 +1,26 @@
#include <stdio.h>
int main(void) {
int start = 10;
for(int i = 1; i <= start; i++) {
for(int i = 0; i <= 10; i++) {
for(int j = 0; j <= i; j++){
printf("%s", "*");
}
}
printf("\n");
}
for(int i = 0; i <= 10; i++) {
for(int j = 10; j >= i; j--){
printf("%s", "*");
}
printf("\n");
}
for(int i = 0; i <= 10; i++) {
for(int t = 0; t <= i; t++){
printf(" ");
}
for(int j = 10; j >= i; j--){
printf("%s", "*");
}
printf("\n");
}
}