/in/foo.cc: In function 'int main()':
/in/foo.cc:11:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(t == 100) a[0]++; if(t<100&&t>=90) a[1]++; if(t < 90&&t >=80)a[2]++;
^~
/in/foo.cc:11:24: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(t == 100) a[0]++; if(t<100&&t>=90) a[1]++; if(t < 90&&t >=80)a[2]++;
^~
/in/foo.cc:12:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(t < 80&&t>=70)a[3]++;if(t < 70&&t>=60)a[4]++; else if(t < 60)a[5]++;
^~
/in/foo.cc:12:27: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(t < 80&&t>=70)a[3]++;if(t < 70&&t>=60)a[4]++; else if(t < 60)a[5]++;
^~
/in/foo.cc:14:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i = 0; i < 6; i++)
^~~
/in/foo.cc:16:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return 0;
^~~~~~