执行如下程序代码a=0;c=0; do{ --c; a=a-1; }while(a>0); 后C的值是()A、0B、1C、-1D、死循环
执行如下程序代码a=0;c=0; do{ --c; a=a-1; }while(a>0); 后C的值是()
A、0
B、1
C、-1
D、死循环
相关考题:
有以下程序main(){ int y=10;while(y--);printf("y= % d\n",y);}程序执行后的输出结果是A)y=0B)y=-1C)y=1D)while 构成无限循环
执行如下程序代码,c的值打印出来是() public class Test1 { public static void main(String[] args) { int a = 0; int c = 0; do{ --c; a = a - 1; } while (a > 0); System.out.println(c); } }A.0B.1C.-1D.死循环
执行如下程序代码 a=0; c=0; do{ --c; a=a-1; }while(a>0); 后,c的值是()。A.死循环B.1C.0D.-1