Téléverser les fichiers vers "/"

This commit is contained in:
2024-09-16 20:36:19 +02:00
commit f7b5f773b1
5 changed files with 216 additions and 0 deletions

25
exemple_1.c Normal file
View File

@@ -0,0 +1,25 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv)
{
int a = 12;
int b = 34;
int c = 56;
int d = 29;
if(a < 10){
b = a+c;
}
else{
c = a*a;
if(b > c){
b++;
}
else{
a = b + c;
}
}
return a;
}