tenis.cpp: In function 'int main()':
tenis.cpp:37:20: warning: format '%lld' expects argument of type 'long long int*', but argument 2 has type 'int*' [-Wformat=]
37 | sc("%lld", &per[i][pol]);per[i][pol]--;
| ~~~^ ~~~~~~~~~~~~
| | |
| | int*
| long long int*
| %d
tenis.cpp:3:23: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
3 | #define loop(i, a, b) for(ll i=a;i<b;i++)
| ^~~
tenis.cpp:67:5: note: in expansion of macro 'loop'
67 | loop(i, 0, 3) cout << cntpol[i]<<" ";cout << endl;
| ^~~~
tenis.cpp:67:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
67 | loop(i, 0, 3) cout << cntpol[i]<<" ";cout << endl;
| ^~~~
tenis.cpp:3:23: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
3 | #define loop(i, a, b) for(ll i=a;i<b;i++)
| ^~~
tenis.cpp:68:5: note: in expansion of macro 'loop'
68 | loop(i, 0, n) cout << cntpla[i]<<" ";cout<<endl;
| ^~~~
tenis.cpp:68:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
68 | loop(i, 0, n) cout << cntpla[i]<<" ";cout<<endl;
| ^~~~
tenis.cpp:37:15: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
37 | sc("%lld", &per[i][pol]);per[i][pol]--;
| ^