问题详情
下列程序段执行后s值为:(38)int i=1, s=0; do { if(!(i%2))continue; s+ =i; } while(i<10);
A.1
B.45
C.25
D.以上均不是
请帮忙给出正确答案和分析,谢谢!