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

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

8、关于 cin 和 cout 说法正确的有

A.cin 与 cout 都是类

B.cin 是一个 istream 类的对象

C.cout 是一个 ostream 类的对象

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


参考答案和解析
cin 是一个 istream 类的对象;cout 是一个 ostream 类的对象
更多 “8、关于 cin 和 cout 说法正确的有A.cin 与 cout 都是类B.cin 是一个 istream 类的对象C.cout 是一个 ostream 类的对象D.cin 和 cout 都是 ios 类的对象” 相关考题
考题 使用VC6打开考生文件夹下的工程RevProj8。此工程包含一个源程序文件 RevMain8.cpp。在该文件中,函数resort的功能是:能在一个数列中,对从指定位置开始的几位数,按相反顺序重新排列,并在主函数中输出新的序列。请改正程序中的错误,使它能得到正确结果。注意,不要改动main函数,不得删行或增行,也不得更改程序的结构。源程序文件RevMain8.cpp中的程序清单如下://RevMain8.cppinclude <instream>using namespace std;void resort(int arr[],int where,int amount);int main (){int number [20] ,where, arrount, i;cout<<"Input 20 numbers\n";for (i=0; i<20; i++)cin>>number [i];cout<<"How many do you want to sort: ";cin>>arrount;cout<<"\n where do you want to start: ";cin>>where;cout<<"old array as follow:\n";for (i=0; i<20; i++)cout<<nmuber [i] <<" ";resort (number,where, arrount);cout<<"\n resorted array as follow:\n";for (i=0; i<20; i++)cout<<number [i] <<" ";cout<<end1;return 0;}void resort(int array[],int where, int amount){int *pi, *p2, temp;p1=array [where-1];p2=array [where-2+amount];/* * * * *FOUND * * * * */for (;p1<array [where-1+amount/2]; ){/* * * * *FOUND * * * * */*p1=*p2;*p2=*p1;}return;}

考题 阅读下面的程序: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

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

考题 阅读以下程序 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。()

考题 下列实现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.无任何输入

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

考题 有以下程序: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";

考题 两次运行下面的程序,如果从键盘上分别输入10和8,则输出结果为 ______。includeviod 两次运行下面的程序,如果从键盘上分别输入10和8,则输出结果为 ______。 #include<iostream.h> viod main(){ int x: cin>>x: if(x++>9)cout<<x; else cout<<x—<<endl; }A.11和8B.11和9C.10和8D.10和9

考题 1)include2)using namespace std;3)int main()4){5)int a,b,result;6)cout 1)#include2)using namespace std;3)int main()4){5)int a,b,result;6)cout7)cin>>a>>b;8)result=3*a-2*b+1;9)cout10)}程序的第5行中的cout表示:()A、显示字符串B、标准输出的流设备C、标准输入的流设备D、程序入口

考题 1)include2)usingnamespacestd;3)intmain()4){5)inta,b,result;6)cout 1)#include2)usingnamespacestd;3)intmain()4){5)inta,b,result;6)cout7)cin>>a>>b;8)result=3*a-2*b+1;9)cout若在第7行时输入“4空格3单击回车”,则程序第8行执行完后,result的值是:()A.7B.15C.19D.24

考题 阅读以下说明和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();}

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

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

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

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