one more thing: if you're also being marked for style, it's poor style to use numerical constants in your code; if I were you, I'd replace the comparisons "if option == 2" with something like:

#define MODERATE_LEVEL 2

if (option == MODERATE_LEVEL) ...

And the same for the other options, naturally.

my two cents.