执行完下面一段程序后x的值是( ).
void main()
{
int a=1,b=2,c=4,d=3,x=2;
if (a<b)
if (c<d)
x=1;
else
if (a<c)
x=3;
x=4;
cout<<x<<endl;
}
1
2
3
4
发表评论