qianqian 发表于 2011-4-28 07:13:02

C语言试题

本帖最后由 soldier 于 2011-4-30 08:26 编辑

main ()
{
        char a;
        int j,M=0,n=0,k=0,other=0,l=0;
        gets(a);
        for (j=0;j<80;j++)
       
                        if (a<'Z'&&a>'A')
                        {
                                M++;
                        }
                        else if (a<'z'&&a>'a')
                        {
                                n++;
                        }
                        else if (a<'9'&&a>'0')
                        {
                                k++;
                        }
                        else if (a==' ')
                        {
                                l++;
                        }
                                else other++;
               
                       
               
                printf("大写字母=%d小写字母=%d%数字=%d空格=%d其他=%d",M,n,k,l,other);
               
}
else other++;
怎么不对了 啊我是初学者大家帮我看看啊~~谢谢了 ~~

仰望天上的光 发表于 2011-4-28 08:04:49

#include<string.h>
#include<stdio.h>
int main (void)
{
        char a;
        int j,M=0,n=0,k=0,other=0,l=0;
        gets(a);
        for (j=0;j<strlen(a);j++)      
                if (a<='Z'&&a>='A')
                {
                        M++;
                }
                else if (a<='z'&&a>='a')
                {
                        n++;
                }
                else if (a<='9'&&a>='0')
                {
                        k++;
                }
                else if (a==' ')
                {
                        l++;
                }
                else other++;               
                printf("大写字母=%d小写字母=%d%数字=%d空格=%d其他=%d",M,n,k,l,other);       
                return 0;
}

qianqian 发表于 2011-4-28 14:34:15

回复 仰望天上的光 的帖子

恩 对啊我的哪里错了呢

tianyou 发表于 2011-4-28 16:25:17

判断条件还需等于才行:hug:

facege 发表于 2011-5-1 16:20:24

楼主你比较一下,你跟版主给的代码就知道你哪里错喇

neur2520 发表于 2011-5-2 08:14:19

鱼C工作室.YCGZS 发表于 2015-12-14 16:21:51

:smile:smile:smile
页: [1]
查看完整版本: C语言试题