求数组中元素出现的次数的代码
求数组中元素出现的次数的代码
日期:2019-10-16 14:38:11 人气:1
#include
#include
void main()
{
int count[10]={0}; //记录各个字符的个数
char number[] = "11992003747823682482932487928392";
int i=0;
while( number[i]!='\0' ) //判断是否遇到字符串结束符'\0'
{