A.②
B.③
C.④
D.⑥
[单选题]下面程序错误的语句是 #include"iostream.h" ① void main() ② { ③ int A=0; ④ int & B; ⑤ B=A ⑥ cout<<B; ⑦ cout<<A; ⑧ }A.②B.③C.④D.⑥
[单选题]下面程序错误的语句是 #include" iostream.h" ① void main( ) ② { ③ int A=0; ④ int & B; ⑤ B=A; ⑥ cout < < B; ⑦ cout < < A; ⑧ }A.②B.③C.④D.⑥
[主观题]程序include" iostream.h"void main( ){int i=10;jnt j=5;cout < < j+i++ < < end1;}的结果为[ ]
[单选题]下面程序的结果是 #include"iostream.h" void main() { char*str; Str="test!"; cout<<str[5]; }A.程序错误B.!C.'/0'D.为空字符
[单选题]下面程序的结果是( )。 #include"iostream.h" void main() { char *str; Str="test!"; cout<<str[5]; }A.程序错误B.!C.'/0'D.为空字符
[单选题]下面程序的结果是 #include"iostream.h" void main() { char*str; str="test!"; cout<<str[5]; }A.程序错误B.!C.’/0’D.为空字符
[单选题]有以下程序 #include"iostream.h" void main( ) { int i=1,j=1,k=2; if((j++||k++)&&i++) cout<<i<<","<<j<<","<<k; cout<<endl; } 执行后输出结果是A.1,1,2B.2,2,lC.2,2,2D.2,2,3
[单选题]有如下程序: #include"iostream.h" void main() { int x=1,a=0,b=0; swish(X){ case 0:b++; case 1:a++; case 2:a++;b++; } cout<<"a="<<a<<","<<"b="<<b; } 该程序的输出结果是A.a=2,b=1B.a=1,b=1C.a=1,b=0D.a=2,b=2
[单选题]有以下程序: #include"iostream.h" void main() { int i=1,j=1,k=2; if((j++||k++)&&i++) cout<<i<<","<<j<<","<<k; cout<<endl; } 执行后输出结果是A.1,1,2B.2,2,1C.2,2,2D.2,2,3
[单选题]有如下程序: #include"iostream.h" void main( ) { int x=1,a=0,b=0; switch(x) { case 0:b++; case 1:a++; case 2:a++;b++; } cout < < "a=" << a < < "," < < "b=" < < b; } 该程序的输出结果是A.a=2,b=1B.a=1,b=1C.a=1,b=0D.a=2,b=2