语句cout<<(a=2)(b=-2);的输出结果是A.无输出B.编译错误C.-1D.1
语句cout<<(a=2)&&(b=-2);的输出结果是
A.无输出
B.编译错误
C.-1
D.1
相关考题:
13、有下面语句段,输出结果为_____。 using namespace std; #include <iostream> int main(){ char c = 'B'; switch (c) { case 'A':cout << "1"; case 'B':cout << "2"; case 'C':cout << "3"; default: cout << "4"; } return 0; }A.2B.23C.234D.编译错误
【单选题】语句:printf("%d",(a=2)(b= -2);的输出结果是()。A.无输出B.结果不确定C.-1D.1