peige


私信TA

用户名:peige

访问量:34616

签 名:

求你们别学啦,我跟不上

等  级
排  名 273
经  验 5802
参赛次数 0
文章发表 65
年  龄 20
在职情况 学生
学  校 华南农业大学
专  业 软件工程

  自我简介:

求你们别学啦,我跟不上

解题思路:





注意事项:





参考代码:

#include <stdio.h>

int letter=0,digit=0,space=0,others=0;


void count(char str[])

{int i;

 for (i=0;str[i]!='\0';i++)

 if ((str[i]>='a'&& str[i]<='z')||(str[i]>='A' && str[i]<='Z'))//如果是字母

    letter++;//累加

 else if (str[i]>='0' && str [i]<='9')//如果是数字

    digit++;//累加

 else if (str[i]==32)//如果是空格

    space++;//累加

 else

    others++;//其他累加

}

int main(){


 char text[80];//字符串

 gets(text);//获得字符串

 count(text);//调用函数声明

 printf("%d %d %d %d",letter,digit,space,others);

 return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »