This commit is contained in:
2025-04-21 00:40:30 +02:00
parent 9ccc21edde
commit b8c75fc6d3
87 changed files with 2788 additions and 99 deletions

14
S1/GdCP/a02-testing.c Normal file
View File

@@ -0,0 +1,14 @@
#include <stdio.h>
int sequence(int x, int n);
int main(int argc, char *argv[]) {
int x = 3;
int min = -2, max = 8;
for (int n = min; n <= max; n++)
printf("sequence(%d, %d) == %d\n", x, n, sequence(x,n));
return 0;
}