程序代码:#include <stdio.h>
int main( void )
{
int i=5, s=0;
do
if( i%2 )
continue;
else
s += i;
while( --i );
printf( "s = %d\n", s );
}在 do while 中 i 分别经历了 5、4、3、2、1
i为偶数时,将其值累加到 s 中
那 s 肯定就是 4+2=6 了







