叶花永不相见 发表于 2021-11-19 23:40:15

输入的数字、空白符和其他字符怎么分别储存在num[10],blank,others里并打印出来

编写一个用来统计输入的各个数字、空白符(空格、制表符、换行符)以及所有其他字符出现次数的程序。并分别存储在变量 num, blank , others 里边并打印出来。

jackz007 发表于 2021-11-20 10:42:56

#include <stdio.h>

int main(void)
{
      char s                                                                   ;
      int i , num = {0} , blank = 0 , others = 0                              ;
      for(i = 0 ; (s = getchar()) != '\n' ; i ++) {
                if(s >= '0' && s <= '9') num - '0'] ++                     ;
                else if(s == ' ' || s == '\t' || s == '\n') blank ++         ;
                else others ++                                                      ;
      }
      for(i = 0 ; i < 10 ; i ++) if(num) printf("%5c : %d\n" , '0' + i , num) ;
      printf(" blank : %d\n" , blank)                                             ;
      printf("others : %d\n" , others)                                              ;
}
      编译、运行实况:
D:\00.Excise\C>g++ -o x x.c

D:\00.Excise\C>x
123 + 256       * 8 / x + y
    1 : 1
    2 : 2
    3 : 1
    5 : 1
    6 : 1
    8 : 1
blank : 14
others : 6

D:\00.Excise\C>

jhq999 发表于 2021-11-20 11:36:45

本帖最后由 jhq999 于 2021-11-20 11:39 编辑

#include <stdio.h>

int main(void)
{
        int num={0},blank={0},others=0,i=0,j=0;
        char strch={0};
        while(1)
        {
                scanf("%[^\n]",strch);
                fflush(stdin);
                if((strch=='e'&&strch=='x')&&(strch=='i'&&strch=='t'))break;
                i=0;
                while(strch)
                {
                        switch(strch)
                        {
                        case '\t':
                                blank++;
                                break;
                        case ' ':
                                blank++;
                                break;
                        default:
                                if('0'<=strch&&'9'>=strch)
                                        num-'0']++;
                                else
                                        others++;
                                break;

                        }
                        i++;
                }

                blank++;

        }
        printf("\\n is:%d,\\t is: %d,space is: %d\n",blank,blank,blank);
        for ( i = 0; i < 10; i++)
        {
                printf("%d is:%d\n",i,num);
        }
        printf("others is:%d",others);
        return 0;
}         
gh67t67t67t                     9h98jiojj    oko0kko
jiojpu787867564vbbh uhu7689098967809
6876y86
8090jhygty6t
exit
\n is:4,\t is: 3,space is: 6
0 is:5
1 is:0
2 is:0
3 is:0
4 is:1
5 is:1
6 is:11
7 is:9
8 is:9
9 is:7
others is:38

页: [1]
查看完整版本: 输入的数字、空白符和其他字符怎么分别储存在num[10],blank,others里并打印出来