29 lines
557 B
C
29 lines
557 B
C
# include <stdio.h>
|
|
# include <stdlib.h>
|
|
|
|
int main(void) {
|
|
int lancer_1, lancer_2;
|
|
|
|
printf("Entrez le premier dé : ");
|
|
scanf("%d", &lancer_1);
|
|
getchar(); /* Nécessaire pour retirer le \n stocké dans le tampon à l'instruction précédente */
|
|
printf("Entrez le second dé : ");
|
|
scanf("%d", &lancer_2);
|
|
|
|
if (lancer_1 == 1 && lancer_2 == 1) {
|
|
printf("Snake eyes");
|
|
}
|
|
|
|
else if (lancer_1 == 6 && lancer_2 == 6) {
|
|
printf("Boxcars");
|
|
}
|
|
|
|
else {
|
|
if (lancer_1 == lancer_2) {
|
|
printf("Hard ways");
|
|
}
|
|
}
|
|
|
|
putchar('\n');
|
|
return EXIT_SUCCESS;
|
|
} |