网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
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.2
B.23
C.234
D.编译错误
参考答案和解析
3
更多 “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.编译错误” 相关考题
考题
以下程序的输出结果是【】。 include using namespace std; int main() {char S[]="abcde
以下程序的输出结果是【 】。include <iostream>using namespace std;int main(){char S[ ]="abcdef";s[3]='\0';cout<<s<<end1;return 0;}
考题
有如下程序 include using namespace std; class Base { protected:
有如下程序 #include <iostream> using namespace std; class Base { protected: Base( ){cout<<'A'; } Base(char c) { cout<<c; } }; class Derived: public Base { public: Derived(char c){ cout<<c; } }; int main( ){ Derived d1 ('B'); return 0; } 执行这个程序屏幕上将显示输出A.BB.BAC.ABD.BB
考题
下面程序的运行结果为#include(iostream.hvoid main(){char a='3‘;switch(a){case '3‘:cout ”3”;case '2’:cout ”2”;break;default:cout ”1”;}}A.32B.321C.31D.3
考题
下面程序的运行结果为 include void main( ) {char a='3'; switch(a) { case'3':
下面程序的运行结果为#include<iostream.h>void main( ){char a='3';switch(a){case'3':cout < <"3";case'2':cout < < "2";break;default:cout < <"1";}}A.3B.321C.31D.32
考题
下面程序的运行结果为()。includevoid main(){char a=‘3’;switch(A) {case’3’:cout
下面程序的运行结果为( )。 #include<iostream.h> void main() { char a=‘3’; switch(A) { case’3’:cout<<“3”; case’2’:cout<<“2”;break; default:cout<<“1”; } }A.3B.321C.31D.32
考题
以下程序的输出结果是includeusing nameSpace std;int main(){ cout.fill('*'); cout
以下程序的输出结果是 #include<iostream> using nameSpace std; int main() { cout.fill('*'); cout.width(5); cout<<hex<<100<<end1; return 0; }A.**100B.***64C.100**D.64***
考题
以下程序的输出结果是 include void main() { inta=0,i; for(i=1 ;i
以下程序的输出结果是 #include <iostream.h> void main() { int a=0,i; for(i=1 ;i<5;i++) { switch(i) { case 0: case 3: a+=2; case 1: case 2: a+=3; default: a+=5; } } cout<<a<<end1; return; }A.31B.13C.10D.20
考题
以下程序的输出结果是【】。 include using namespace std; void fun() {static int a=0
以下程序的输出结果是【 】。include <iostream>using namespace std;void fun(){static int a=0;a+=2;cout<<a;}int main(){int CC;for(CC=1;cc<4;CC++)fun();cout<<end1;return 0;}
考题
有以下程序: include using namespace std; int main() {int i=010,j=10;cout
有以下程序:include <iostream>using namespace std;int main(){int i=010,j=10;cout<<(++i)<<","<<i--<<end1;return 0;}则该程序运行后的输出结果是【 】。
考题
下面程序运行输出的结果是【】。 include using namespace std; int main(){char a[]="C
下面程序运行输出的结果是【 】。include <iostream>using namespace std;int main(){char a[]="Chinese";a[3]='\0';cout<<a<<endl;return 0;}
考题
有如下程序: include using namespace std; int main() { cout.f
有如下程序: #include<iostream> using namespace std; int main() { cout.fill('*') cout.width(6); cout.fill('#') cout<<123<<endl; return 0; } 执行后的输出结果是A.###123B.123###C.***123D.123***
考题
执行下列语句:includeusing namespace std;int main(){int x=3;if(x=5)cout
执行下列语句: #include<iostream> using namespace std; int main() { int x=3; if(x=5) cout<<x++<<end1; else cout<<x<<end1; return 0; } 程序的输出是( )。A.3B.4C.5D.6
考题
下面程序的运行结果为( )。 #include<iostream.h void main() { char a='3'; switch(a) { case'3': cout<<“3”: case'2': cout<<“2”; break; default:cout<<“1”: } }A.3B.321C.31D.32
考题
有如下程序:includeusing namespace std;int main(){ cout.fill('*'); cout.width (6
有如下程序: #include<iostream> using namespace std; int main() { cout.fill('*'); cout.width (6); cout.fill('#'); cout<<123<<end1; return 0; }执行后的输出结果是______ 。A.###123B.123###C.***123D.123***
考题
以下程序的输出结果是 include void main (){int a=0, i;for (i=1; i
以下程序的输出结果是 #include <iostream.h> void main () { int a=0, i; for (i=1; i<5; i++) { switch (i) { case 0 : case 3 : a+=2; case 1 : case 2 : a+=3; default : a+=5; } } cout<<a<<endl; return; }A.31B.13C.10D.20
考题
下面程序的输出结果是【】。include using namespace std; class base { protected: int
下面程序的输出结果是【 】。include <iostream>using namespace std;class base{protected:int a;public:base(){cout<<"0":}};class basel: virtual public base{public:base1(){ cout<<"1";}};class base2 : virtual public base{public:base2(){cout<<"2";}};class derived : public base1,public base2{public:derived () {cout<<"3"; }}int main (){derived obj;cout<<end1;return 0;}
考题
下面程序的输出结果是【】。 include using namespace std; class A {int a,b; public:A
下面程序的输出结果是【 】。include <iostream>using namespace std;class A{int a, b;public:A(){a = b = 0;}A(int aa, int bb ) : a(aA) , b(bB){cout <<"a="<<a<<","<<"b="<<b<<",";}~A(){cout<<"D";};int main ( ){A x, y(2, 3);return 0;}
考题
有如下程序:include using namespacestd;int main(){cout.fill('*');cout.width(6);c
有如下程序: #include <iostream> using namespace std; int main(){ cout.fill('*'); cout.width(6); cout.fill('#'); cout<<123<<end1; return 0;} 执行后的输出结果是A.###123B.123###C.***123D.123***
考题
以下程序的输出结果是()。include using namespace std;int main(){ int a=1,b; switc
以下程序的输出结果是( )。 #include <iostream> using namespace std; int main(){ int a=1,b; switch(a){ case 1:b=30; case 2:b=20; case 3:b=10; default:b=0; } cout<<b<<endl; return 0; }A.30B.20C.10D.0
考题
以下程序的执行结果为【】。 include using namespace std; void overload(int num) {cou
以下程序的执行结果为【 】。include<iostream>using namespace std;void overload(int num){cout<<num<<end1;}void overload(char ch){char c=ch+1;cout<<c<<end1;}int main(){overload('X');return 0;}
考题
下面程序的运行结果为( )。 #includeiostream.h void main { char a=’3’: switch(8) { case 3:cout”3”: case 2:cout”2”;break; default:cout”l”; } }A.3B.321C.31D.32
考题
以下程序的输出结果是include using namespace std;int main(){cout.fill('*');cout.
以下程序的输出结果是#include <iostream>using namespace std;int main(){ cout.fill('*'); cout.width(5); cous<<hex<<100<<end1; return 0;}A.**100B.***64C.100**D.64***
考题
有以下程序: include include using namespace std; int main() {char arr[
有以下程序: #include<iostream> #include<string> using namespace std; int main() { char arr[2][4]; strcpy(arr[0],"you"); strcpy(arr[1],"me"); arr[0][3]=''; cout<<arr[0]<<end1; return 0; } 执行后的输出结果是( )。A.youmeB.youC.meD.err
考题
有以下程序:include using namespace std;void fun(int i,int j){ cout
有以下程序: #include <iostream> using namespace std; void fun(int i,int j) { cout<<(i+j)<<end1; } void fun(int i) { cout<<i++<<end1; } int main() { int a=1; fun(A) ; return 0; } 该程序执行后的输出结果是( )。A.1B.2C.3D.4
考题
有如下程序: include include using namespace std; int main() {cout.f
有如下程序: #include <iostream> #include <iomanip> using namespace std; int main() { cout.fill('*'); cout.width(6); cout.fill('#'); cout<<123<<end1; return 0; } 执行生的输出结果是( )。A. ###123B.123###C. ***123D.123***
考题
以下程序的输出结果是include void main(){ int a=0,i; for(i=1;i
以下程序的输出结果是 #include<iostream.h> void main() { int a=0,i; for(i=1;i<5;i++) { swich (i) { case 0: case 3:a+=2; case 1: case 2:a+=3; default:a+=5; } } cout<<a<<endl; return; }A.31B.13C.10D.20
考题
下面程序的运行结果为( )。 include using namespace std; void main(){
下面程序的运行结果为( )。 #include<iostream> using namespace std; void main(){ int a=1; switch(a){ case 1:cout<<"1"; case 2:cout<<"2"; break; default:cout<<"0"; } }A.12B.120C.1D.10
考题
有如下程序:include includeusing namespace std;int main(){cout.fill('*
有如下程序:#include <iostream>#include<iomanip>using namespace std;int main(){ cout.fill('*'); cout.width(6); cout.fill('#'); cout<<123<<end1; return 0;}执行后的输出结果是( )。A.###123B.123###C.***123D.123***
热门标签
最新试卷