以下for循環(huán)的執(zhí)行次數(shù)是() for(x=0,y=0;(y=123)&&(x<4);x++);
A.是無限循環(huán) B.循環(huán)次數(shù)不定 C.4次 D.3次
int a=1,b=2,c=3; if(a>b)a=b; if(a>c)a=c; 則a的值為().
A.1 B.2 C.3 D.不一定
假定所有變量均已正確定義,下列程序段運(yùn)行后x的值是()
A.14 B.4 C.15 D.3