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++;
怎么不对了 啊我是初学者大家帮我看看啊~~谢谢了 ~~ #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;
}
回复 仰望天上的光 的帖子
恩 对啊我的哪里错了呢 判断条件还需等于才行:hug: 楼主你比较一下,你跟版主给的代码就知道你哪里错喇 :smile:smile:smile
页:
[1]