foo.cpp: In function 'int main()':
foo.cpp:12:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (s2>80&&s6>0) s+=8000;if (s2>85&&s3>80) s+=4000;
^~
foo.cpp:12:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if (s2>80&&s6>0) s+=8000;if (s2>85&&s3>80) s+=4000;
^~
foo.cpp:13:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (s2>90) s+=2000;if (s2>85&&s5[0]=='Y') s+=1000;
^~
foo.cpp:13:22: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if (s2>90) s+=2000;if (s2>85&&s5[0]=='Y') s+=1000;
^~
foo.cpp:14:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (s3>80&&s4[0]=='Y') s+=850;t+=s;
^~
foo.cpp:14:33: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if (s3>80&&s4[0]=='Y') s+=850;t+=s;
^