河南成教 / 计算机基础与程序设计
正确率:100%
19[单选题]
A.a=1 b=2 c=1
B.a=1 b=2 c=3
C.a=1 b=3 c=1
D.a=2 b=3 c=2
若变量都已正确说明,则以下程序段输出为____
int a=1,b=2,c=3;
if(a>b)
a=b;
b=c;
c=a;
printf("a=%d b=%d c=%d
",a,b,c);
参考答案:
佳题速递: