首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
阅读以下程序 #include <stdio.h> main() { int case ; float printF; printf("请输入2个数:"); scanf("%d %f",
阅读以下程序 #include <stdio.h> main() { int case ; float printF; printf("请输入2个数:"); scanf("%d %f",
admin
2020-04-18
21
问题
阅读以下程序
#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的值
答案
A
解析
C语言中标识符的定义中区分大小写,所以printF与printf不一样,可以作为标识符。而case是C语言中的关键字,不能作为变量名,scanf是标准的输入函数,printf是标准的输出函数,所以选择A选项。
转载请注明原文地址:https://kaotiyun.com/show/WjCp777K
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
设变量已正确定义,以下不能统计出一行中输入字符个数(不包含回车符)的程序段是()。【09年3月】
设有定义:intn=1234;doublex=3.1415;则语句printf("%3d,%1.3f\n",n,x);的输出结果是()。
有以下程序:#includeintnew_div(doublea,doubleb){returna/b+0.5;}main(){printf("%d",new_div(7.8,3.1));}
有以下程序:#includemain(){intx=0×13;if(x=0×12)printf("True");printf("False\n");}程序运行后的输出结果是(
有以下程序:#includemain(){inta=1,b=0;pfinff("%d,",b=a+B);pfinff("%d\n",a=2*B);}程序运行后的输出结果是()。
若有定义:charc;intd;,程序运行时输入:c=1,d=2,能把字符1输入给变量c、整数2输入给变量d的输入语句是()。
有以下程序#include#includemain(){charname[9]="c##line";char*str=-name;printf("%d,%d,%d,%d\n",sizeof(name),strlen(name),sizeof
有如下程序#include<stdio.h>#include<string.h>main(){intlen=strlen(’’\0\t123456’’);printf(’’%d’’,len);
随机试题
在沥青混凝土加铺层与旧水泥混凝土路面之间设置(),具有延缓和抑制反射裂缝产生的效果。
质量保证计划实施的目的是确保施T质量满足工程()的要求。
WHO口腔健康标准中下面哪项是错误的
尿毒症最早期的表现为
图示直径为d的圆轴,承受轴向拉力F和扭矩T。按第三强度理论,截面危险的相当应力σeq3为()。
VIP是VeryImportantPerson的缩写,是指()。
这学期乐乐没有参加刘老师亲戚办的校外补习班,刘老师便经常找乐乐的茬,上周还把他调到教室最后一排坐,乐乐感觉刘老师不如以前那样喜欢自己了。这个材料表明刘老师没有做到()
Hehastoldmewhentheyaretodiscussmyproposal.
Readthearticlebelowaboutgoodsreturnedbycustomerstomailordercompanies.Choosethebestwordorphrasetofilleac
Takingchargeofyourselfinvolvesputtingtorestsomeveryprevalentmyths.Atthetopofthelististhenotionthatintellig
最新回复
(
0
)