park.cpp: In function 'bool testa(int, int)':
park.cpp:40:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(v[i].x-v[i].r<k) une(i, m+2); if(v[i].x+v[i].r>xx-k) une(i, m+3);
^~
park.cpp:40:36: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
if(v[i].x-v[i].r<k) une(i, m+2); if(v[i].x+v[i].r>xx-k) une(i, m+3);
^~
park.cpp:41:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(v[i].y-v[i].r<k) une(i, m); if(v[i].y+v[i].r>yy-k) une(i, m+1);
^~
park.cpp:41:34: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
if(v[i].y-v[i].r<k) une(i, m); if(v[i].y+v[i].r>yy-k) une(i, m+1);
^~
park.cpp: In function 'int main()':
park.cpp:64:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d", &m, &n);
~~~~~^~~~~~~~~~~~~~~~~
park.cpp:65:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d", &xx, &yy);
~~~~~^~~~~~~~~~~~~~~~~~~
park.cpp:67:21: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
int a, b, c; scanf("%d %d %d", &a, &b, &c);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
park.cpp:74:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
int a, b; scanf("%d %d", &a, &b);
~~~~~^~~~~~~~~~~~~~~~~