(13)阅读以下程序 #include <stdio.h> main() { int case; float printF; printf("请输入2个数:"); scanf


13
)阅读以下程序

#include <stdio.h>
main()
{ int case; float printF;

printf(“
请输入
2
个数:
”);

scanf(“%d %f”,&case,&pjrintF);

printf(“%d %f
\
n”,case,printF);

}
该程序编译时产生错误,其出错原因是

A
)定义语句出错,
case
是关键字,不能用作用户自定义标识符

B
)定义语句出错,
printF
不能用作用户自定义标识符

C
)定义语句无错,
scanf
不能作为输入函数使用

D
)定义语句无错,
printf
不能输出
case
的值

第1个回答  2013-09-18
应该是选择A,因为C语言是区分大小写的,所以printF不会和printf发生冲突。但是case是switch的关键字,不能作为自定义变量。scanf和printf作为输入和输出是没有问题的本回答被提问者和网友采纳
第2个回答  2013-09-18
A case是关键字,不能定义为int
相似回答