有以下程序: #include<stdio.h> main() {int a=1,b=0: printf("%d,",b=a+b); printf("%d\n",a=2*b); } 程序运行后的输出结果是( )。

admin2019-07-10  2

问题 有以下程序:
#include<stdio.h>
main()
{int a=1,b=0:
printf("%d,",b=a+b);
printf("%d\n",a=2*b);
}
程序运行后的输出结果是(  )。

选项 A、1,2
B、1,0
C、3,2
D、0,0

答案A

解析 首先打印b=a+b=1+0=1的值1,此时已给b赋值为1。然后打印a=2*b=2*1=2的值2。所以结果是1,2。
转载请注明原文地址:https://kaotiyun.com/show/F4ID777K
0

相关试题推荐
最新回复(0)