基本格式: int count[10]; memset(count,0,sizeof(int)*10) 對count進(jìn)行初始化,給count的10個原素賦0值 就等于for(int i = 0;i<10;i++)