(a)Giventhataisinitializedwiththevalue2,howmanytimesdoesthebodyofthefollowingloopexecute?while(a>0){a--;}(b)Howmanytimesdoesthebodyofthefollowingloopexecute?b=1;while(b<=3){b++;}
举一反三
- 已知a=2,b=3,则语句:while(a=b){a--;break;}的循环次数是( )。 A: 3 B: 1 C: 0 D: 无限循环
- 若有语句: a=3; while( a>0) { a-- }则循环体执行()次
- 执行下面的程序后,a的值是( )main( ){int a=2;while(a--) ;printf(“%d\n”,a);} A: 2 B: 1 C: 0 D: -1
- int a=2;while(a=0) a--; 该循环共执行了 _______ 次
- 对下面三条语句,正确的叙述是。 (1) while(a)i++; (2) while(a==0)i++; (3) while(a!=0)i++;