网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

与语句cout<<endl;不等价的是( )。

A.cout <<’\n’;

B.cout<<‘\l2’:

C.cout <<’\xA’;

D.cout<<‘\0’:


参考答案

更多 “ 与语句cout<<endl;不等价的是( )。A.cout <<’\n’;B.cout<<‘\l2’:C.cout <<’\xA’;D.cout<<‘\0’: ” 相关考题
考题 有如下程序 include using namespace std; int i=1; class Fun { 有如下程序 #include <iostream> using namespace std; int i=1; class Fun { public: static int i; int value( ){ return i-l;} int value( )const { return i+1;} }; int Fun::i=2; int main( ){ int i=3; Fun funl; const Fun fun2; ___________ return 0; } 若程序的输出结果是: 123 则程序中下划线处遗漏的语句是A.cout<<funl.value( )<<Fun::i<<fun2.value( );B.cout<<Fun::i<<funl.value()<<fun2.value( );C.cout<<funl.value( )<<fun2.value( )<<Fun::i;D.cout<<fun2.value( )<<Fun::i<<fun1.value( );

考题 下列输出字符,A,的方法中,( )是错误的。A.cout <<put ('A');B.cout<<'A';C.cort. put ('A');D.char A='A';cout<<A;

考题 与语句coutA.cout‘\n';B.Cout’\12';C.cout’\xA';D.cout’\0';

考题 与语句cout< <endl; 不等价的是A.cout < <'\n';B.cout < <'\12';C.cout < <'\xA';D.cout < <'\0';

考题 有如下类和对象的定义: class Constants{ public: static double getPI( ){return 3.1416;} }; Constants constants; 下列各组语句中,能输出3.1416的是A.cout<<constants->getPI( );和cout<<Constants::getPI( );B.cout<<constants.getPI( );和cout<<Constants.getPI( );C.cout<<constants->getPI( );和cout<<Constants->getPI( );D.cout<<eonstants.getPI( );和cout<<Constants::getPI( );

考题 有如下4个语句:\n①cout~A~setfill(~*~)leftsetw(7)~B~endl;\n②coutsetfill(~*~)leftsetw(7)~A~~B~endl;\n③cout~A~serfill(~*~)rightsetw(7)~B~endl;\n④coutsetfill(~*~)rightsetw(7)~A~~B~endl;\n其中能显示A******B的是A、①和③B、①和④C、②和③D、②和④

考题 下面选项中,不属于C++语句的是( )。A.{;}B.cout<<"Hello!"<<endlC.;D.{int i=1;int f=i;cout<<f<<endl;}

考题 下列实现C语言语句printf("Hello!")的相同功能的语句是( )。A.cout>>"Hello!"B.cin>>"Hello!"C.cout<<"Hello!"D.cin<<"Hello!"

考题 已知数组arr的定义如下: intarr[5]={1,2,3,4,5};下列语句中输出结果不是2的是( )。A.cout*arr+1endl;B.COUt*(art+1)endl;C.coutarr[1]endl;D.COUt*arrendl:

考题 与语句cout <<end1;不等价的是A.cout <<,’\n’;B.cout <<,’\12’;C.cout <<,’\xA’;D.cout <<,’\0’;

考题 要想使23.78965421的输出为23.7887应用的语句是A.cout<<23.78965421;B.cout<<fixed<<23.78965421;C.cout<<23.78965421-0.001;D.cout<<fixed<<23.78965421-0.001;

考题 已知int a,*pa=a:输出指针pa十进制的地址值的方法是()。A.cout 已知int a,*pa=a:输出指针pa十进制的地址值的方法是( )。A.cout<<pa;B.cout<<*p;C.cout<<pa;D.cout<<long(pa);

考题 已知数组arr的定义如下: int arr[5]={1,2,3,4,5}; 下列语句中,输出结果不是2的是A.cout<<*arr+1<<endl;B.tout<<*(arr+1)<<endl;C.cout<<arr[1]<<endl;D.eout<<%arr<<endl;

考题 有如下类和对象的定义: class Constants{ public: static double get PI(){return 3.1416;} }; Constants constants; 下列各组语句中,能输出3.1416的是A.cout<<constants->getPI();和cout<<Constants::getPI();B.cout<<constants. getPI();和cout<<Constants.getPI();C.cout<<constants->getPI();和cout<<Constants->getPl();D.cout<<constants. getPI();和cout<<Constants::getPI();

考题 下列语句分别是不同程序中的第一个输入输出语句。若去掉其中的“<<left”,输出效果将发生变化的是A.cout<<left<<setfill('*')<<357;B.cout<<left<<setw(5)<<357;C.cout<<left<<setw(5)<<"ABCDE";D.cout<<left<<"ABCDE";

考题 下列语句中,输出与众不同的是A.cout<<" 1. "<<setfill(' ') <<" Hello ! "<<end1B.cout<<"1. "<<"<"Hello!"\n";C.cout<<"1. Hello!"<<end1;D.cout<<'1. "<<setw(7)<<"Hello! ";

考题 下列输出字符,A,的方法中,错误的是( )A.cout<<put('A');B.cout<<'A';C.cout.put('A');D.charA='A';cout<<A;

考题 与C语言 prinft("Hello word/n");语句功能相同的C++语句是( )。A.cout>>"Hello world\n";B.cin>>"Hello wofld\n;C.cout<<"Hello world\n";D.cin<<"Hello wofld\n;

考题 与语句coutendl;不等价的是( )。 A.cout\n;B.cout\12;SXB 与语句coutendl;不等价的是( )。A.cout\n;B.cout\12;C.cout\xA;D.cout\0;

考题 下列表达式中,错误的是( )。A.cout<<setw(5);B.cout<<fill('#');C.cout.setf(ios::uppercase);D.cin.fill('#');

考题 与语句coutendl;不等价的是( )。A.cout ’\n’;B.cout‘\l2’:C.cout ’\xA’;D.cout‘\0’:

考题 有如下类定义和变量定义: class Parents{ public: int publicData: private: int privateData; }; class ChildA:public Parents{/类体略*/}; class ChildB:private Parents{/类体略*/}; ChildA a; ChildB b; 下列语句中正确的是A.cout<<a.publicData<<endl;B.cout<<a.privateData<<endl;C.cout<<b.publieData<<endl;D.eout<<b.privateData<<endl;

考题 在C++语言中输出“Hello World”的语句是()。A.cout>"Hello World";C.cin 在C++语言中输出“Hello World”的语句是( )。A.cout<<"Hello World";B.cout>>"Hello World";C.cin<<"Hello World";D.cin>>"Hello World";

考题 下列语句中,输出与众不同的是A.cout<<"1."<<setfill('')<<"Hello!"<<endl;B.cout<<"1."<<''<<"Hello! \n";C.cout<<"1. Hello!"<<endl;D.cofit<<"1."<<setw(7)<<"Hello!";

考题 已知inta,*pa=a;输出指针pa十进制的地址值的方法是()。A.cout<<pa;B.cout<<*p;C.cout<<pa;D.cout<<long(pa);

考题 与语句coutendl;不等价的是( )。A.cout\n;B.cout\12;C.cout\xA;D.cout\0;

考题 要想使23.78965421的输出为23.7887应用的语句是( )A.cout<<23.78965421; B.cout< C.cout<<23.78965421 -0.001; D.cout<