Files
DEV/DEV.1.1/CM2TEST/CM2B/2.Division/hue.c
Emmanuel Srivastava 6bcd12a191 update
2024-12-11 11:57:32 +01:00

12 lines
198 B
C

#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;
}
}