DEV/DEV1.1/Entrainements/controle_machine_2_B/hue.c

12 lines
200 B
C
Raw Normal View History

2024-12-10 12:52:05 +01:00
#include "carre.c"
int hue(void) {
int choice = rand()%3;
if (choice == 0) {
return RED;
} else if (choice == 1) {
return GREEN;
} else /* if (choice == 2) */ {
return BLUE;
}
}