OMG TMNT! No, it's not that bad, but do you know what a switch-case statement is? If not, look it up. That will GREATLY improve the style in this code.
Two other tips:
In one line if statements, you don't need brackets.
Also, since you're not returning anything important, change 'int menu' to 'void menu', and remove the 'return 0' at the end of the menu function.Code:if (!blah) doSomething();
