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

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

关于 cin 和 cout 说法正确的有

A.cin 与 cout 都是类

B.cin 是一个 istream 类的对象

C.cout 是一个 ostream 类的对象

D.cin 和 cout 都是 ios 类的对象


参考答案和解析
输出乱码或出错
更多 “关于 cin 和 cout 说法正确的有A.cin 与 cout 都是类B.cin 是一个 istream 类的对象C.cout 是一个 ostream 类的对象D.cin 和 cout 都是 ios 类的对象” 相关考题
考题 执行语句序列 intn: cin>>n: switch(n) { casel: case2:cout<<'1': case 3: case4:cout<<'2': break: delhult:cout<<'3': } 时,若键盘输入1,则屏幕显示A.1B.2C.3D.12

考题 阅读下面的程序:includevoid main(){int x;cin>>x;if(x++>5)cout 阅读下面的程序: #include<iostream.h> void main() { int x; cin>>x; if(x++>5) cout<<x<<end1; else cout<<x--<<end1; } 如果两次执行上述程序,且键盘输入分别为4和6,则输出结果分别是( )。A.4,6B.3,6C.4,7D.5,7

考题 阅读以下程序 include void main( ) { char line[10]; cin>>line; cout 阅读以下程序#include<iostream.h>void main( ){char line[10];cin>>line;cout<<line<<endl;}如运行时输入This is example.<CR>,则程序的输出结果是A.ThisB.This isC.This is aD.This is an example.

考题 cout通常与显示器相连,cin通常与键盘相连。()

考题 使用cin和cout进行输入和输出操作必须包含头文件iomanip.H。()

考题 假如输入为30和60,下列程序运行的结果是【】。 include void main() { int a, b; cin>> 假如输入为30和60,下列程序运行的结果是【 】。include<iostream.h>void main() {int a, b;cin>>a>>b;if(a<b) {a=a+b;b=a-b;a=a-b;}cout<<a<<“,”<<b<<endl}

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

考题 有以下程序: include include usingnamespacestd; intmain() {intarrays 有以下程序: #include <iostream> #include <cstdlib> using namespace std; int main() { int arraysize; int *array; cout<<"Please input the size of the array:"; cin>>arraySiZe; array=new int[arraysize]; if(array==NULL) { cout<<"allocate Error\n"; exit(1); } for(int i=0;i<arraysize;i++) array[i]=i*i; int j; cout<<"which element you want to check:"; cin>>j; cout<<array[j]<<end1; return 0; } 执行程序输入:10<空格>5,则输出结果为( )。A.allocate ErrorB.1C.0D.25

考题 有以下程序:include using namespace std;int main (){ int n; cin>>n; if (n++ 有以下程序: #include <iostream> using namespace std; int main () { int n; cin>>n; if (n++<10) cout<<n<<end1; else cout<<n--<<end1; return 0; } 若执行该程序时从键盘上输入9,则输出结果是( )。A.11B.10C.9D.8

考题 下列关于C++预定义流对象的叙述中,正确的是A.cin是C++预定义的标准输入流对象B.cin是C++预定义的标准输入流类C.cout是C++预定义的标准输入流对象D.cout是C++预定义的标准输入流类

考题 若从键盘输入83,则以下程序输出的结果是 ______。include viod main() {int a;cin>> 若从键盘输入83,则以下程序输出的结果是 ______。 #include<iostream.h> viod main() { int a; cin>>a; if(a>>60) cout<<a; if(a>70) cout<<a; if(a>80) cout<<a; }A.83B.8383C.838383D.无任何输入

考题 有以下程序:includevoid main(){int n;cin>>n;if (n++ 有以下程序: #include<iostresm.h> void main() { int n; cin>>n; if (n++<10) cout<<n<<endl; else cout<<n--<<endl; } 若执行上述程序时,从键盘上输入9,则输出结果是( )。A.11B.10C.9D.8

考题 与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(){ int x; cin>>x; if(x++>5) cout 阅读下面的程序: #include<iostream.h> void main() { int x; cin>>x; if(x++>5) cout<<x<<endl; else cout<<x——<<endl; } 如果两次执行上述程序,且键盘输入分别为4和6,则输出结果分别是( )。A.4,6B.3,6C.4,7D.5,7

考题 下面的程序段中,有()处错误和警告。includeint main()int x; cin>>x cout 下面的程序段中,有( )处错误和警告。 #include<stdio.h> int main() int x; cin>>x cout<<x; }A.1B.2C.3D.4

考题 若从键盘输入70,则以下程序输出的结果是【】。includevoid main(){int a; cin>>a;if(a> 若从键盘输入70,则以下程序输出的结果是【 】。include<iostream.h>void main(){int a; cin>>a;if(a>50) cout<<a;if(a>40) cout<<a;if(a>30) cout<<a;}

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

考题 从键盘的输入中,读入一个值并赋值给x的语句是 ______ 。A.cin>>xB.cin>xD.cout 从键盘的输入中,读入一个值并赋值给x的语句是 ______ 。A.cin>>xB.cin<<xC.cout>>xD.cout<<x

考题 在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";

考题 阅读以下说明和C++程序,将应填入(n)处的字句写在答题纸的对应栏内。【说明】本程序用于评选优秀教师和学生。当输入一系列教师或学生的记录后,将优秀学生及教师的姓名列出来。其类结构如下图所示:【程序】include <iostream.h>include <stdio. h>class base{protected:char name[8];public:void getname(){cout<<"name:"; cin>>name;}void printname(){cout<<"name:"<<name<<endl;}(1)};class student: (2){int num;public:void getnum(){cout<<"score:"; cin>>num;}bool isgood(){return (3) }};class teacher: (2){int num;public:void getnum(){cout<<"paper:"; cin>>num;}bool isgood(){return (num>3)?true:false;}void main(){base *p[50];student *pstud;teacher *ptech;char ch;int count=0;do{cout<<"input teacher(t) or student(s):";cin>>ch;if(ch=='s'){pstud=new student;pstud->getname();pstud->getnum();p[count++]=pstud;}else if(ch=='t'){(4)ptech->getname();ptech->getnum();p[count++]=ptech;}elsecout<<"input is wrong"<<endl;cout<<"continue to iput(y/n)?";cin>>ch;}while(ch=='y');for(int i=0;i<count;i++)if((5))p[i]->printname();}

考题 在下列选项中,用于清除基数格式位设置以十六进制数输出的语句是()。A、cout<<setf(ios::dec,ios::basefield);B、cout<<setf(ios::hex,ios::basefield);C、cout<<setf(ios::oct,ios::basefield);D、cin>>setf(ios::hex,ios::basefield);

考题 Visual C++中,流类库的作用是什么?有人说,cin是键盘,cout是显示器,这种说法正确吗?为什么?

考题 Cin后面的符号是:(),cout后面的符号是:()。

考题 cin是()的一个对象,处理标准输入;cout是()的一个对象,处理标准输出。

考题 控制台程序中需要使用cin和cout输出/输入,include指令包含的头文件是()A、cmanthB、coniohC、iostreamD、iomanip

考题 单选题在一个C++源文件中使用了cin和cout,那么在这个源文件中必须包含()文件。A iostreamB fstreamC stdio.hD stdlib.h

考题 填空题Cin后面的符号是:(),cout后面的符号是:()。

考题 填空题cin是()的一个对象,处理标准输入;cout是()的一个对象,处理标准输出。