+ 1
Find Error
Plz find what and where is the error ? https://code.sololearn.com/c12sEj0xYtya/?ref=app
2 Réponses
+ 6
DevTycoon - In your code, you typed in ';' instead of the required ':' after the case statements. That's what is causing the errors to pop up.
For example,
Replace 'case 7;' by 'case 7:'
Hope this helps!
+ 8
You havevto use colons, not semicolons after the case expressions. They will be like this:
case 7:
cout<<"Blah";
break;