Run id: 155892
Main.cc: In function 'int main()':
Main.cc:4:5: error: 'a' was not declared in this scope
if(a > b and a > c){
^
Main.cc:4:9: error: 'b' was not declared in this scope
if(a > b and a > c){
^
Main.cc:4:19: error: 'c' was not declared in this scope
if(a > b and a > c){
^
Main.cc:10:4: error: expected '}' before 'else'
}else{
^
Main.cc:19:4: error: 'else' without a previous 'if'
}else{
^
Main.cc:20:7: error: 'b' was not declared in this scope
if(b > c and b > a){
^
Main.cc:20:11: error: 'c' was not declared in this scope
if(b > c and b > a){
^
Main.cc:20:21: error: 'a' was not declared in this scope
if(b > c and b > a){
^
Main.cc: At global scope:
Main.cc:31:2: error: expected unqualified-id before 'return'
return 0;
^
Main.cc:32:1: error: expected declaration before '}' token
}
^