Long time no see

This commit is contained in:
2026-02-21 10:47:00 +07:00
parent 0d54fe176e
commit b7df98a55c
198 changed files with 3249 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
#include <stdio.h>
int main() {
int n[8];
for (int i = 0; i < 8; i++){
printf("num %d: ",i);
scanf("%d", &n[i]);
}
for (int i = 7; i > 0; --i)
printf("%d ", n[i]);
printf("\n");
return 0;
}