Run id: 111869
Main.cc: In function 'int main()':
Main.cc:12:22: error: expected ')' before ';' token
if(s1[i]>='A';s1[i]>='Z'){
^
Main.cc:12:33: error: expected ';' before ')' token
if(s1[i]>='A';s1[i]>='Z'){
^
Main.cc:12:28: warning: value computed is not used [-Wunused-value]
if(s1[i]>='A';s1[i]>='Z'){
^
Main.cc:15:22: error: expected ')' before ';' token
if(s2[i]>='A';s2[i]>='Z'){
^
Main.cc:15:33: error: expected ';' before ')' token
if(s2[i]>='A';s2[i]>='Z'){
^
Main.cc:15:28: warning: value computed is not used [-Wunused-value]
if(s2[i]>='A';s2[i]>='Z'){
^
Main.cc:10:9: warning: unused variable 'len2' [-Wunused-variable]
int len2 =s2.size();
^