exemple1
This commit is contained in:
parent
db7cfd501c
commit
ce8a5aca76
33
Exemples/exemple1.c
Normal file
33
Exemples/exemple1.c
Normal 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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user