赞题库-背景图
单项选择题

有以下程序,程序运行后的输出结果是#includemain(){int x,y,z;x=y=1; z=x++,y++,++y; printf("%d,%d,%d\n",x,y,z);}

A.2,3,1
B.2,3,2
C.2,3,3
D.2,2,1