/in/foo.cc: In function 'int main()':
/in/foo.cc:19:44: error: break statement not within loop or switch
case 'A': cout << "Aquaman Win" << endl; break;
^~~~~
/in/foo.cc:20:1: error: case label ''B'' not within a switch statement
case 'B': cout << "Superman Win" << endl; break;
^~~~
/in/foo.cc:20:43: error: break statement not within loop or switch
case 'B': cout << "Superman Win" << endl; break;
^~~~~
/in/foo.cc:21:1: error: case label ''C'' not within a switch statement
case 'C': cout << "Batman Win" << endl; break;
^~~~
/in/foo.cc:21:41: error: break statement not within loop or switch
case 'C': cout << "Batman Win" << endl; break;
^~~~~
/in/foo.cc: At global scope:
/in/foo.cc:23:1: error: expected unqualified-id before 'return'
return 0;
^~~~~~
/in/foo.cc:24:1: error: expected declaration before '}' token
}
^