C语言题-2题:统计此字符串中字母、数字、空格和其它字符的个数

C语言题-2题:统计此字符串中字母、数字、空格和其它字符的个数,第1张

C语言题-2题:统计此字符串中字母、数字、空格和其它字符的个数

题目:编写一函数,由实参传来一个字符串,统计此字符串中字母、数字、空格和其它字符的个数,在主函数中输入字符串以及输出上述结果。 只要结果,别输出什么提示信息

考点:1、gets()的输入和scanf()输入有什么区别

                        这个区别自己找吧,我就不写了,也不太难。

           2、如何定义一个字符串

           3、对于库函数ctype.h中函数的运用

                        对于判断是字符还是数字还有空格,也可以用ascii码判断,也可以用库函数

           4、如何给函数传字符串

#define _CRT_SECURE_NO_WARNINGS
#include
#include
#include
void total(char str[]);
int main(void) {
  char str[1000] = {0};
  gets(str);
  total(str);
  return 0;
}
void total(char str[]) {
  int i = 0, letter = 0, number = 0, block = 0, other = 0;
  for (i = 0; i < strlen(str); i++) {
    if (isalpha(str[i])) {
      letter++;
    } else if (isdigit(str[i])) {
      number++;
    } else if (str[i] ==' ') {
      block++;
    } else {
      other++;
    }
  }
  printf("%d %d %d %d", letter, number, block, other);
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5520676.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存