This commit is contained in:
Pierre Valarcher 2021-09-28 12:26:53 +02:00
parent db7cfd501c
commit ce8a5aca76

33
Exemples/exemple1.c Normal file
View File

@ -0,0 +1,33 @@
#include <stdio.h>
#include <stdlib.h>
int main (int argc, char *argv[])
{
int v1, v2, v3;
int max = 0;
/* Gérer les entrées : printf, scanf */
printf("Entier1 : ");
scanf("%d", &v1);
printf("Entier2 : ");
scanf("%d", &v2);
printf("Entier3 : ");
scanf("%d", &v3);
/* Faire le calcul : pas de printf, pas de scanf */
if ((v1 >= v2) && (v1 > v3))
max = v1;
if ((v2 > v1) && (v2 > v3))
max = v2;
if ((v3 > v1) && (v3 > v2))
max = v3;
/* Afficher le résultat : printf */
printf("Max : %d\n", max);
return EXIT_SUCCESS;
}