/in/foo.cc: In function 'int main()':
/in/foo.cc:32:7: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(!pr[i])
^~
/in/foo.cc:34:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
for(int j=0;j<cnt&&prime[j]*i<=n/2;j++)
^~~
/in/foo.cc:45:7: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(!pr[i])
^~
/in/foo.cc:47:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
for(int j=0;j<cnt&&prime[j]*i<=n;j++)
^~~