这个(i%2)和 s += i是什么意思
After running the following piece of code, the value of s is __.int i=5, s=0;
do {
if (i%2) continue;
else s += i;
} while(--i);
A.
15
B.
9
C.
6
D.
5
2022-10-27 14:15
2022-10-27 15:11
2022-10-27 15:13