This commit is contained in:
2023-10-06 13:47:33 +01:00
parent 2d6791220f
commit 317d7f837e
7 changed files with 157 additions and 0 deletions

9
C9/ex5.c Normal file
View File

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