36 lines
739 B
C
36 lines
739 B
C
|
/* Comparaison de nombres */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <sys/param.h>
|
||
|
|
||
|
int sont_egaux(int, int);
|
||
|
int calcul_difference(int, int);
|
||
|
|
||
|
int main() {
|
||
|
int a, b, difference;
|
||
|
printf("Donnez deux nombres séparés par un espace : ");
|
||
|
scanf("%d %d", &a, &b);
|
||
|
|
||
|
if (sont_egaux(a, b)) {
|
||
|
printf("Les nombres sont égaux\n");
|
||
|
} else {
|
||
|
printf("Les nombres sont différents\n");
|
||
|
difference = calcul_difference(a, b);
|
||
|
printf("%d est supérieur à %d de %d\n", MAX(a, b), MIN(a, b), difference);
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int sont_egaux(int a, int b) {
|
||
|
if (a == b) {
|
||
|
return 1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int calcul_difference(int a, int b) {
|
||
|
return MAX(a, b) - MIN(a, b);
|
||
|
}
|