c语言编程:编写一个函数,统计出一行字符中英文字母的个数,在主函数输入字符串,调用该函数后输出结果

如题所述

第1个回答  2014-05-22
#include <stdio.h>
void count(char *s, int *a, int *b)
{
*a = *b = 0;
while(*s)
{
if('A' <= *s && *s <= 'Z' || 'a' <= *s && *s <= 'z')
(*a)++;
else
(*b)++;
s++;
}
}
int main()
{
char s[100];
int zm, qt;
printf("输入字符串:\n");
gets(s);
count(s, &zm, &qt);
printf("字母:%d\n", zm);
printf("其它:%d\n", qt);
return 0;
}

没有测试,你试一下对不对。应该是这样的本回答被网友采纳
第2个回答  2014-05-22
#include <string.h>
#include <stdio.h>
int letter;
void count(char str[]);
main()
{
    char str[100];
    letter=0;
    printf("请输入一个字符串:\n");
    gets(str);
    count(str);
    printf("输入字符串英文字母个数为%d\n",letter);
}
 
void count(char str[])
{
    int i;
    for(i=0;i<strlen(str);i++)
        if(str[i]>='a'&&str[i]<='z'||str[i]>='A'&&str[i]<='Z')
            letter++;
}

第3个回答  推荐于2017-08-07
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>

#define BUFSIZE 4096

int alpha_count(char *s) {
    int count = 0;
    char *s1 = s;

    while(*s1 != '\0') {
        if(isalpha((int)*s1)){
            count++;
        }   
        s1++;
    }   

    return count;
}

int main(void) {
    char buf[BUFSIZE];
    while(1){
        printf("input any string:\n");
        fgets(buf,sizeof(buf),stdin);
        printf("alpha count %d\n\n",alpha_count(buf));
    }   
    exit(0);
}

本回答被网友采纳
第4个回答  2017-08-03
oracle中实现:
select tt.aa,length(regexp_replace(tt.aa,'[^[:alpha:]]*','')) from (select 'as222dc123ffggff ' as aa from dual) tt;

在C语言中,同样使用正则表达式将非中英文字母替换成空字符串,再求个数
第5个回答  2017-08-01
int GetSum(char *str)
{
    int count=0;
    for(int i=0;str[i]!='\0';i++)
    {
        if((str[i]>='a' && str[i]<='z')||(str[i]>='A' && str[i]<='Z'))
            count++;
    }
    return count;
}

相似回答