网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
以下语句中,输出结果与众不同的一个是()
- A、cout<<"1. "<<setfill(’ ’)<< "Hello! "<<endl;
- B、cout<<"1."<<’ ’ <<"Hello! /n";
- C、cout<<"1. Hello! "<<endl;
- D、cout<<"1. "<<setw(7)<< "Hello! ";
参考答案
更多 “以下语句中,输出结果与众不同的一个是()A、cout<<"1. "<<setfill(’ ’)<< "Hello! "<<endl;B、cout<<"1."<<’ ’ <<"Hello! /n";C、cout<<"1. Hello! "<<endl;D、cout<<"1. "<<setw(7)<< "Hello! ";” 相关考题
考题
下面程序的输出结果为______ include void main() {cout
下面程序的输出结果为______include<iostream.h>void main(){cout<<"Hello\b";}
考题
( 20 )已知数组 arr 的定义如下: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;
考题
下列程序的输出结果是()。includeusing namespace std;int main()于chara[]=”Hello,Te
下列程序的输出结果是( )。 #include<iostream> using namespace std; int main() 于 chara[]=”Hello,Test”; Char*p=a; while(*p) { if(*p)=’a’*p(=’z’) cout<<char(*p+’A’-’a’); else cout<<*p; p++; } return 0; }A.hello,testB.Hello,TestC.HELLO,TESTD.hELLO,tEST
考题
有如下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、②和④
考题
下面程序的执行结果是______。 include include using namespace std; vo
下面程序的执行结果是______。include<iostream.h>include<iomanip.h>using namespace std;void main(){cout<<setfill('x')<<setw(10);cout<<"Hello"<<endl;}
考题
下列程序的执行结果是______。 include include using namespace std; vo
下列程序的执行结果是______。include<iostream.h>include<iomanip.h>using namespace std;voidmain(){cout<<setfill('x')<<setw(10);cout<<"Hello"<<end1;}
考题
有如下4个语句:①cout~A~setfill(~*~)leftsetw(7)~B~endl;②coutsetfill(~*~)leftsetw(7)~A~~B~endl;③cout~A~serfill(~*~)rightsetw(7)~B~endl;④coutsetfill(~*~)rightsetw(7)~A~~B~endl;其中能显示A******B的是A、①和③B、①和④C、②和③D、②和④
考题
下列实现C语言语句printf("Hello!")的相同功能的语句是( )。A.cout>>"Hello!"B.cin>>"Hello!"C.cout<<"Hello!"D.cin<<"Hello!"
考题
下列程序的输出结果是______。includeusing namespace std;int main() {char a []="He
下列程序的输出结果是______。 #include<iostream> using namespace std; int main() { char a []="Hello, World"; char *ptr=a; while (* ptr) { if(*ptr)= 'a' *ptr' <= 'z') cout << char(*ptr+'A'-'a'); else cout << *ptr; ptr++; } return 0; }A.HELLO,WORLDB.Hello,WorldC.hELLO, wORLDD.hello,world
考题
有如下类和对象的定义:class MyHello{public:static string getName() { return "Hello"; }};MyHello my;下列各组语句中,能输出“Hello”的是( )。
A. coutB.coutC.coutD.cout
考题
下面程序的执行结果是【】。 include include using namespace std; void main(
下面程序的执行结果是【 】。include<iostream>include<iomanip>using namespace std;void main(){cout<<setfill('x')<<setw(10);cout<<"Hello"<<endl;}
考题
下列程序的输出结果为( )。 #include (iostream) using namespace std; void main( ) char,a[ ] = { "hello" ," the" ," world" }; char * * pa = a: pa + +; cout << * pa << ENDL; }A.helloB.theC.worldD.hellotheworld
考题
下列程序的输出结果为 include void main( ) { char * a[ ] ={"hello},"the"," wo
下列程序的输出结果为#include<iostream.h>void main( ){char * a[ ] ={"hello},"the"," world"};char * * pa=a;pa++;cout < < * pa < < endl;}A.helloB.theC.worldD.hellotheworld
考题
下列语句中,输出与众不同的是A.cout<<" 1. "<<setfill(' ') <<" Hello ! "<<end1B.cout<<"1. "<<"<"Hello!"\n";C.cout<<"1. Hello!"<<end1;D.cout<<'1. "<<setw(7)<<"Hello! ";
考题
与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;
考题
下列程序的输出结果为includevoid main(){char*a[]={"hello","the","world"};char*
下列程序的输出结果为 #include<iostream.h> void main() { char*a[]={"hello","the","world"}; char**pa=a; pa++; cout<<*pa<<end1; }A.helloB.theC.worldD.hello the world
考题
执行语句:cout<<setfill('*')<<setw(10)<<setfill('#')<<left<<123<<"OK"<<endl;后将输出A.123*******OKB.123#######OKC.123********OK********D.123#######OK########
考题
有如下4个语句: ①cout<<‘A’<<setfill(‘*’)<<1eft<<setw(7)<<‘B’<<endl; ②cout<<setrill(‘*’)((1eft<<setw(7)<<‘A’<<‘B’<<endl; ③cout<<‘A’<<serfill(‘*’)<<right<<setw(7)<<‘B’<<endl; ④cout<<setfill(‘x’)<<right<<setw(7)<<‘A’<<‘B’<<endl;A.①和③B.①和④C.②和③D.②和④ 其中能显示A* * * * * *B的是( )。
考题
在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";
考题
有如下四个语句: ①cout<<A<<seifill(*)<<left<<setw(7)<<B<<endl; ②cout<<setfill(*)<<left<<setw(7)<<A<<B<<endl; ③cout<<A<<serfill(*)<<right<<setw(7)<<B<<endl; ④cout<<setfill(*)<<right<<setw(7)<<A<<B<<endl; 其中能显示A******B的是( )。A.①和③B.①和④C.②和③D.②和④
考题
下列语句中,输出与众不同的是A.cout<<"1."<<setfill('')<<"Hello!"<<endl;B.cout<<"1."<<''<<"Hello! \n";C.cout<<"1. Hello!"<<endl;D.cofit<<"1."<<setw(7)<<"Hello!";
考题
设char str1[11]="HELLO,",str2[10]=“world”;则执行语句cout
设char str1[11]="HELLO,",str2[10]=“world”;则执行语句 cout<<strlen(strcpy(str1,str2)));后的输出结果是 ______。A.12B.11C.7D.5
考题
下列程序的输出结果是 include usingnamespacestd; int main () {chara []="Hello,W
下列程序的输出结果是 #include <iostream> using namespace std; int main () { char a [] = "Hello,World": char*ptr = a; while (*ptr) { if(*ptr>= 'a' *ptr <='z' cout<<char{*ptr+'A'-'a'); else cout<<*ptr; ptr++; } return 0; }A. HELLO. WORLDB. Hello, WorldC. hELLO, wORLDD. hello, world
考题
下列程序的执行结果为______。include void main() { cout.fill(‘*’); tout.width(10
下列程序的执行结果为______。include<iostream.h>void main(){cout.fill(‘*’);tout.width(10);cout<<“hello”<<endl;)
考题
单选题以下语句中,输出结果与众不同的一个是()A
cout<<1. <<setfill(’ ’)<< Hello! <<endl;B
cout<<1.<<’ ’ <<Hello! /n;C
cout<<1. Hello! <<endl;D
cout<<1. <<setw(7)<< Hello! ;
热门标签
最新试卷