Files
DEV/DEV.1.1/CM2/CM2B/2.Division/hue.c

12 lines
198 B
C
Raw Normal View History

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