以下程序的输出结果是( )
void main()
{
int x,y,z;
x=y=1;
z=x++,y++,++y;
cout<<x<<”, "<<y<<”, ”<<z<<endl;
}
2,3,3
2,3,2
2,3,1
2,2,1
发表评论