私信TA

用户名:uq_56613018273

访问量:1577

签 名:

等  级
排  名 3290
经  验 1967
参赛次数 0
文章发表 15
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

#include<stdio.h>
#include<math.h>
#include<string.h>

# define N 255

int main()
{
    char str[N];
    scanf("%[^\n]",str);// 提供一种正则读入的方法
    int res = 0;
    for(int i = 0; i < strlen(str); i++)
    {
        if(str[i] >= '0' && str[i] <= '9') res++;
    
        // printf("%c",str[i]);
    }
    printf("%d",res);
}


 

0.0分

0 人评分

  评论区

  • «
  • »