✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
{
int i, j, a;
a = 0;
for (i = 0 ; i <5 ; i++) {
for (j = 6 ; j >= 2; j--) {
if (i == j) {
a++;
}
}
}
return 0;
}
Que vaut a à la fin du programme ?