![]() |
#2
幻紫灵心2022-10-27 15:11
|
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