求哪位大佬帮忙看一眼,这个题是用C语言写一个程序,输入一行数字字符 用整型数组统计其中每个数字字符的个数,下标为0的元素存放"0"的个数,下标为1的元素存放"1"的个数……求求了#include<stdio.h>int main(){char s[100];int i,l,a[10]={0,0,0,0,0,0,0,0,0,0};printf(“Please input.\n”);gets(s);i=0;while(s[i]){ switch(s[i]){ case 0:a[0]+=0;break;case 1:a[1]+=0;break;case 2:a[2]+=0;break;case 3:a[3]+=0;break;case 4:a[4]+=0;break;case 5:a[5]+=0;break;case 6:a[6]+=0;break;case 7:a[7]+=0;break;case 8:a[8]+=0;break;case 9:a[9]+=0;break;default:break; }i++;}for(l=0;l<10;l++)printf("%d",a[l]);}