填空题 下列程序的输出结果是______。
void main()
int a=1,b=2;
a=a+b;b=a-b;a=a-b;
printf("%d,%d/n",a,b);


  • 1、
【正确答案】 1、2,1    
【答案解析】