c语言,编一个函数,统计任意一串字符中数字字符的个数,并在主函数中调用此函数。

c语言,编一个函数,统计任意一串字符中数字字符的个数,并在主函数中调用此函数。调用函数
最新回答
玲宝咱深乃

2024-05-11 14:25:45

#include <
stdio.h
>
#include <
string.h
>
int conNumfromStr(char *,int);
int main()
{
    char str[21];
    printf("输入20以内的字符:");
    scanf("%s",str);
    printf("
字符串
中数字字符个数为:%d",conNumfromStr(str,strlen(str)) );
    return 0;
}
int conNumfromStr(char *p,int len)//计数字符串中数字字符的个数
{
    int i,con=0;
    for(i=0;i<len;i++)
    {
        if(p[i]>='0' && p[i]<='9')
            con++;
    }
    return con;
}
风雪不归

2024-05-11 15:08:21

#include<stdio.h>
int numcount(char s[])
{
int i,n=0;
for(i=0;s[i];i++)
if(s[i]>='0'&&s[i]<='9')n++;
return n;
}
void main()
{
char s[100];
printf("Please input a string:");
gets(s);
printf("There are %d num chars in the string.\n",numcount(s));
}