下面程序段的输出结果是( )。 int x=5; do{ cout<< --x; }while(!x);A.43210B.5C.4D.无任何输出
下面程序段的输出结果是( )。 int x=5; do{ cout<< --x; }while(!x);
A.43210
B.5
C.4
D.无任何输出
相关考题:
下列程序段的输出结果是includevoid fun(int * x,int * y){cout 下列程序段的输出结果是 #include<iostream.h> void fun(int * x,int * y) { cout << * X << * y; *X=3; *y=4; } void main() { int x=1,y=2; fun(y,x); cout << X << y<<endl; {A.2143B.1212C.1234D.2112
以下程序段的输出结果是()。 int x=5; do{ cout<<x--; } while(!x);A.54321B.43210C.5D.4