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

admin2019-01-14  18

问题 有以下程序:
    #include<stdio.h>
    main()
    {
    char s[]={’’012xy’’};
    int 1,n=0;
    for(i=0;s!=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://jikaoti.com/ti/XTf0FFFM
0

最新回复(0)