1.6 数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.6 数组相关的知识,希望对你有一定的参考价值。

编写一个程序,以统计各个数字,空白符(包括空格符,制表符及换行符)以及所有其他字符出现的次数.

 1 #include<stdio.h>
 2 int main()
 3 {
 4     int c, i, nwhite, nother;
 5     int ndigit[10];
 6 
 7     nwhite = nother = 0;
 8     for (i = 0; i < 10; i++)
 9         ndigit[i] = 0;
10 
11     while ((c = getchar()) != EOF)
12     {
13         if (c >= 0&& c <= 9)
14         {
15             ndigit[c - 0]++;
16         }
17         else if (c ==   || c == \t || c == \n)
18         {
19             nwhite++;
20         }
21         else
22         {
23             nother++;
24         }
25     }
26     printf("digits =");
27     for (i = 0; i < 10; i++)
28     {
29         printf(" %d", ndigit[i]);
30     }
31     printf(", nwhite space = %d, other = %d\n", nwhite, nother);
32     return 0;
33 }

 

以上是关于1.6 数组的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段10—— 数组的响应式方法

web代码片段

错误代码:错误域 = NSCocoaErrorDomain 代码 = 3840“JSON 文本没有以数组或对象和允许未设置片段的选项开头。”

javascript常用代码片段

为什么我不能在此片段中生成唯一对象数组?

1.6 数组