题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2024-06-04 00:57:24

[单项选择]阅读以下程序 #includc<iostream.h> vold main( ) { Char line[10]; cin>>line; cout<<line<<endl; } 如运行时输入This is example.<CR>,则程序的输出结果是
A. This
B. This is
C. This is a
D. This is an exampl

更多"阅读以下程序 #includc<iostream.h> vold "的相关试题:

[单项选择]阅读以下程序
#includc<iostream.h>
vold main( )

Char line[10];
cin>>line;
cout<<line<<endl;

如运行时输入This is example.<CR>,则程序的输出结果是
A. This
B. This is
C. This is a
D. This is an example.
[单项选择]阅读以下程序 #include<iostream.h> void main( ) { charline[10]; in>>line; cout<<line<<endl; } 如运行时输入This is an example.<CR>,则程序的输出结果是( )。
A. This
B. This is
C. This is a
D. This is an exampl
[单项选择]阅读以下程序 #include main( ) {int case;float printf; Printf(“请输入2个数:”); Scanf(“%d%f”,&case,&printf); Printf(“%d%f/n”,case,printf); } 该程序在编译时产生错误,其出错原因是
A. 定义语句出错,case是关键字,不能用作用户自定义标示符
B. 定义语句出错,printf不能用作用户自定义标示符
C. 定义语句出错,scanf不能作为输入函数使用
D. 定义语句出错,printf不能输出case的值
[单项选择]阅读以下程序 #include<fstream.h> void main( ) { ifstream infile; ofstream outfile; fstream iofile; iofile.open("a.txt",ios::in); iofile.close( ); iofile.open("b.txt",ios::out); } 下列描述错误的是
A. 对象infile只能用于文件输入操作
B. 对象outfile只能用于文件输出操作
C. 对象iofile在文件关闭后,不能再打开另一个文件
D. 对象iofile可以打开一个文件同时进行输入和输出
[单项选择]阅读以下程序 #include<iostream.h> void main( ) { char line[10]; cin>>line; cout<<line<<endl; } 如运行时输入This is example.<CR>,则程序的输出结果是
A. This
B. This is
C. This is a
D. This is an exampl
[单项选择]阅读以下程序# include<fstream. h>void main( ){ifstream infile;ofstream outfile;{stream iofile;iofile. open("a. txt", ios:: in);iofile. close( );iofile. open('b. txt" ,ios: :out):....}下列描述错误的是
A. 对象infile只能用于文件输入操作
B. 对象outfile只能用于文件输出操作
C. 对象iofile在文件关闭后,不能再打开另一个文件
D. 对象iofile可以打开一个文件同时进行输入和输出
[单项选择]阅读以下程序
#include<stdio.h>
main( )
Int Case;float printF;
printf("请输入2个数:");
scanf("%d %f",&Case,&printF);
printf("%d%f/n",Case,printF);

以下说法正确的是( )。
A. 定义浯句出错,Case是关键字,不能用作用户自定义标识符,printF不能用作用户自定义标识符
B. 定义语句出错,Int无法被识别
C. 定义语句无错,scanf不能作为输入函数使用
D. 定义语句无错,printf不能输出Case的值
[单项选择]以下程序的结果是
  #include<iostream.h>
  void main( )
   char * p="abcdefgh",* r;
   long * q;
   q=(long * )p;
   q++;
   r=(char * )q;
   cout < < r < < end1;
A. defg
B. cdef
C. ghab
D. efgh
[单项选择]阅读以下程序: #include<iostream.h> voi6 main( ) { static int a[][2]={5,3,1,2}; int i,j,s1=0; for(i=0;i<2;i++) for(j=0;j<2;j++) { if(i==j) s1=s1+a[i][j]; } cout<<s1<<end1; } 则该程序的输出结果为( )。
A. 6
B. 7
C. 8
D. 9
[单项选择]阅读以下程序:
#include<stdio.h>
main( )
int case;float printF;
printf("请输入2个数:");
scanf("%d%f",&case,&printF);
printf("%d%f/n",case,printF);

该程序在编译时产生错误,其出错原因是( )。
A. 定义语句出错,case是关键字,不能用做用户自定义标识符
B. 定义语句出错,printF不能用作用户自定义标识符
C. 定义语句无错,scanf不能作为输入函数使用
D. 定义语句无错,printf不能输出case的值
[单项选择]有以下程序:   #include  <string.h>   main( )   { char str[][20]={"Hello","Beijing"},*p=str;    printf("%d/n",strlen(p+20));   }   程序运行后的输出结果是( )。
A. 0
B. 5
C. 7
D. 20
[单项选择]阅读以下程序 #include<stdio.h> main( ) { int case; float printF;  printf("请输入2个数:");  scanf("%d %f", &case, &printF);  printf("%d %f/n", case, printF); } 该程序编译时产生错误,其出错原因是
A. 定义语句出错,case是关键字,不能用作用户自定义标识符
B. 定义语句出错,printF不能用作用户自定义标识符
C. 定义语句无错,scanf不能作为输入函数使用
D. 定义语句无错,printf不能输出case的值
[单项选择]阅读以下程序 #include<stdio.h> main( ) {Int Case;float printF; printf("请输入2个数:"); scanf("%d %f",&Case,&printF); printf("%d%f/n",Case,printF); } 以下说法正确的是( )。
A. 定义浯句出错,Case是关键字,不能用作用户自定义标识符,printF不能用作用户自定义标识符
B. 定义语句出错,Int无法被识别
C. 定义语句无错,scanf不能作为输入函数使用
D. 定义语句无错,printf不能输出Case的值
[单项选择]

有以下程序
main( ){
union{
unsigned int n;
unsigned char c;
}
ul;ul.c='A';
printf("%c/n",ul.n);
}
执行后输出结果是()


A. 产生语法错
B. 随机值
C. A
D. 65

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码