Oldsoap


私信TA

用户名:teslaofeizao

访问量:5533

签 名:

一枚辣鸡

等  级
排  名 1115
经  验 3198
参赛次数 6
文章发表 18
年  龄 0
在职情况 学生
学  校 大学
专  业

  自我简介:

解题思路:

注意事项:
输入函数用scanf要注意回车键,要加上getchar()提取回车符。
参考代码

#include <stdio.h>

#include <string.h>

int i;

int main()

{

    char str[100];

    int len, n = 0, w = 0, s = 0, o = 0;

    gets(str);   //gets函数会自己在结尾加上\0

    len = strlen(str);    // 读取字符串长度(并不包括结束符\0)

    for(i = 0; i < len; i++)

{

    if(str[i] >= '0' && str[i] <= '9') n++;

    else if(str[i] >= 'A' && str[i] <= 'Z') w++;

    else if(str[i] >= 'a' && str[i] <= 'z') w++;

    else if(str[i] == ' ') s++;  

    else o++;    //若都不是 o(other) 自增


}

    printf("%d %d %d %d", w, n, s, o);

    return 0;


 

0.0分

0 人评分

  评论区

  • «
  • »