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

 我来答
壊囝孩
2014-05-22 · TA获得超过688个赞
知道小有建树答主
回答量:868
采纳率:0%
帮助的人:138万
展开全部
#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;
}

没有测试,你试一下对不对。应该是这样的
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Calm_pass
2014-05-22 · TA获得超过228个赞
知道小有建树答主
回答量:82
采纳率:100%
帮助的人:30.3万
展开全部
#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++;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
dttsw
推荐于2017-08-07 · TA获得超过1059个赞
知道小有建树答主
回答量:770
采纳率:88%
帮助的人:311万
展开全部
#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);
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2017-08-03
展开全部
oracle中实现:
select tt.aa,length(regexp_replace(tt.aa,'[^[:alpha:]]*','')) from (select 'as222dc123ffggff ' as aa from dual) tt;

在C语言中,同样使用正则表达式将非中英文字母替换成空字符串,再求个数
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
不说无所谓谓谓
2017-08-01 · TA获得超过547个赞
知道小有建树答主
回答量:454
采纳率:63%
帮助的人:138万
展开全部
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;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式