基本格式: int count[10]; memset(count,0,sizeof(int)*10) 对count进行初始化,给count的10个原素赋0值 就等于for(int i = 0;i<10;i++)