设x、y、t均为int型变量,执行了以下程序后,变量y 的值为( ).
void main()
{
int x,y,t;
x=y=3;
t=++x||++y;
cout<<y<<endl;
}
1
2
3
4
发表评论