5.(示例)計算字母’a’在字符串中出現的次數
char word[]=”banana”;
count=0;
for (i=0; word[i]!=’\0’; i++)
if (word[i]==’a’)
count++;
printf(“%d”,count);
6.將上面這段代碼封裝為函數count, count接收字符串和要統計的字母作為形參。
7.重寫count函數,不直接遍歷字符串,使用前面的三參數版本的find函數。
6:
public int count(String word,char zimu){
char word1[];
int i;
word1=word.toCharArray();
for(i=0;word1[i]!='\0';i++){
if(word1[i]==zimu)
i++;
}
return i;
}