• 2022-06-19
    编写一个函数,由实参传来一个字符串,统计字符串中字母,数字,空格和其他字符的个数,在主函数 中输入字符串以及输出上述的结果。
  • #include int letter,digit,space,others; int main() {void count(char []); char text[80]; printf("input string:\n"); gets(text); printf("string:"); puts(text); letter=0; digit=0; space=0; others=0; count(text); printf("\nletter:%d\ndigit:%d\nspace:%d\nothers:%d\n",letter,digit,space,others); return 0; } void count(char str[]) {int i; for (i=0;str[i]!='\0';i++) if ((str[i]>='a'&& str[i][='z')||(str[i]]='A' && str[i][='Z')) letter++; else if (str[i]]='0' && str [i]<='9') digit++; else if (str[i]==32) space++; else others++; }[/i][/i][/i][/i][/i][/i][/i][/i]

    内容

    • 0

      编写一个函数,统计字符串中字母、数字、空格和其它字符个数并输出。

    • 1

      编写一个函数,统计字符串中字母、数字、空格和其它字符个数,调用它并输出统计结果。

    • 2

      编写一个函数,统一字符串中字母、数字、空格和其他字符的个数

    • 3

      输入一个字符串,统计字符串中英文字母、数字、空格和其他字符的个数。4feaac36bfb0b1931f78d2f9097ef9aa.PNG

    • 4

      使用input输入一个字符串,统计并输出其中字母、数字、空格和其他字符个数。