有以下程序: #include<stdio.h> main() { char s[]={"012xy"}; int i,n=0: for(i=0;[i]!=0;i++) if(s[i]>=’a’&&s[i]<=’z’) n++: printf("%d\n"

admin2020-11-27  18

问题 有以下程序:
#include<stdio.h>
main()
{
char s[]={"012xy"};
int i,n=0:
for(i=0;!=0;i++)
if(s>=’a’&&s<=’z’)
n++:
printf("%d\n",n);
}
程序运行后的输出结果是(  )。

选项 A、0
B、2
C、3
D、5

答案B

解析 程序首先给字符数组s[]赋值为“012xy”,for循环语句的功能是遍历字符串,通过if条件语句对字符串中的小写字母计数,在符串中小写字母为2个,即n=2,因此B选项正确。
转载请注明原文地址:https://kaotiyun.com/show/Nztp777K
0

最新回复(0)