#23410: 解題思路


ck1090758@gl.ck.tp.edu.tw (peienwu)

學校 : 臺北市立建國高級中學
編號 : 128355
來源 : [27.247.166.72]
最後登入時間 :
2021-10-16 11:22:04
c012. 10062 - Tell me the frequencies! -- UVa10062 | From: [36.230.148.137] | 發表日期 : 2020-11-14 16:44

可以利用陣列索引值放ascii碼,陣列的內容為出現次數 如下:

 

getline(cin,n);

for(int i=0;i<n.length();i++){

       int s = n[i];

       arr[s]++;

   }

 

 
ZeroJudge Forum