This commit is contained in:
2025-02-03 08:38:52 +03:00
parent 7522af1dc2
commit bb35fb2db6
7 changed files with 41 additions and 0 deletions

13
test/test2.c Normal file
View File

@ -0,0 +1,13 @@
#include <stdio.h>
int main() {
int n = 4, a = 1;
int i, c;
for (i = 1; i <=n; i++) {
for (c = 1; c <= i; c++) {
printf("%d", a);
a++;
}
printf("\n");
}
}