30 lines
417 B
C
30 lines
417 B
C
|
/* La Majorité */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int est_majeur(int);
|
||
|
|
||
|
int main() {
|
||
|
int age;
|
||
|
|
||
|
printf("Quel est votre âge ? ");
|
||
|
scanf("%d", &age);
|
||
|
|
||
|
if (est_majeur(age) == 1) {
|
||
|
printf("Vous êtes donc majeur.\n");
|
||
|
}
|
||
|
else {
|
||
|
printf("Vous êtes mineur.\n");
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int est_majeur(int age) {
|
||
|
if (age >= 18) {
|
||
|
return 1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|