以下输入输出语句错误的是()
A: cout <;<; x <;<; endl;
B: cin >;>; y >;>; z;
C: cout >;>; a >;>; b;
D: cout <;<; “a”;
A: cout <;<; x <;<; endl;
B: cin >;>; y >;>; z;
C: cout >;>; a >;>; b;
D: cout <;<; “a”;
C
举一反三
- 下列输入输出语句中错误的是() A: cout << x << endl; B: cin >> y >> z; C: cout >> a >> b; D: cout << “a”;
- 有语句inta=1,b=2;以下正确的输出语句是()。 A: cout<<a=a+b<<endl; B: C: cout<<(hex)a+b; D: cout<<&a<<endl<<a<<endl;
- 以下错误的if语句是( )。 A: if(x>x++; B: if(x++; C: if(x!= cout<<x;y++; D: if(x< x++;cout<<x;else cout<<y;
- 阅读下列程序,写出运行结果。 #include [iostream] using namespace std; int main() { int a = 1, b = 2; bool x, y; cout [< (a++)+(++b) << endl; cout << a % b << endl; x = !a]b; y = a-- && b; cout << x << endl; cout << y << endl; }
- 从键盘的输入中,读入一个值并赋值给x的语句是 ______ 。 A: cin>>x B: cin<<x C: cout>>x D: cout<<x
内容
- 0
执行如下语句序列,不可能出现的情况是: int x; cin>>x; if(x>250) cout<<'A'; if(x<250) cout<<'B'; else cout<<'A';
- 1
以下输入输出语句错误的是:( ) A: cout B: cin>>y>>z; C: cout>>a>>b; D: cout
- 2
以下if语句语法正确的是( )。 A: if(x>0) cout<<xelse cout<<--x; B: if(x>0){ x=x+y; cout<<x; }else cout<<--x; C: if(x>0){ x=x+y; cout<<x; };else cout<<--x; D: if(x>0){ x=x+y; cout<<x };else cout<<--x;
- 3
中国大学MOOC: 下列代码运行后,输出的结果为 。int x=5;switch(2*x%3){ case 1: cout<<x<< ’; case 3: cout<<2*x+1<< ’; case 9: cout<<3*x-1<< ’; break; default: cout<<"default"<<endl; }cout<<"switch end."<<endl;
- 4
已知数组art的定义如下: int arr[5]={1,2,3,4,5); 下列语句中输出结果不是2的是 A: cout<<*arr+1<<endl; B: cout<<*(arr+1)<<endl; C: cout<<arr[1]<<endl; D: cout<<*arr<<endl;