Run id: 133103
Main.cc: In function 'int main()':
Main.cc:10:9: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
if(a>b>c){
^
Main.cc:13:11: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
else(b>a>c)&&(b>c>a)
^
Main.cc:13:20: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
else(b>a>c)&&(b>c>a)
^
Main.cc:14:5: error: expected ';' before 'cout'
cout<a>c)&&(b>c>a)
^
Main.cc:15:5: error: 'else' without a previous 'if'
else(c>a>b)&&c>b>a)
^
Main.cc:15:11: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
else(c>a>b)&&c>b>a)
^
Main.cc:15:19: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
else(c>a>b)&&c>b>a)
^
Main.cc:15:23: error: expected ';' before ')' token
else(c>a>b)&&c>b>a)
^
Main.cc:15:16: warning: statement has no effect [-Wunused-value]
else(c>a>b)&&c>b>a)
^