/in/foo.cc: In function 'int jixiao(char*)':
/in/foo.cc:9:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(x[i]>='a' && x[i]<='z')
^~
/in/foo.cc:11:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
i=i+1;
^
/in/foo.cc: In function 'int jida(char*)':
/in/foo.cc:21:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(x[i]>='A' && x[i]<='Z')
^~
/in/foo.cc:23:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
i=i+1;
^