写一个程序,输入数量不确定的[0到9]的范围内的整数,统计每一种数字出现的次数,输入-1表示输入结束
思路,设计一个大小为10的数组a[10],数组的每一项都代表一个数字,a[1]代表1,a[2]代表2…,以此类推.输入的每一个数字刚好可以作为数组的项数,即a[输入的数字],然后每个数出现一次对该项自增一,最后遍历输出
#include<stdio.h>
int main()
{
int x,i;
int a[10]; //因为0到9刚好有10项
for(i=0;i<10;i++){
a[i]=0; //初始化数组
}
scanf("%d", &x);
while(x!=-1){
if(x>=0 && x<=9){ //对输入的数字进行判断
a[x]++;
}
scanf("%d", &x);
}
for(i=0;i<10;i++){
printf("%d:%d\n", i, a[i]);
}
return 0;
}