ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
下面程序计算字符串中字母‘a’出现的次数: ~~~ apstring fruit = "banana"; int length = fruit.length(); int count = 0; int index = 0; while (index < length) { if (fruit[index] == ’a’) { count = count + 1; } index = index + 1; } cout << count << endl; ~~~ 这个程序展示了一个叫做“计数器”的习惯用法。变量count初始化为0,每次找到一个‘a’时加1。退出循环时,count就是结果,即字符串中‘a’的个数。 作为练习,请将该代码封装到一个名为countLetters的函数中,该函数要以字符串和字母作为参数。 第二个练习,请重写该函数,要求该函数不能遍历字符串,而是使用我们前一节编写的find版本。