C++ 循环与计数

2023-03-20 15:55 更新

下面程序计算字符串中字母‘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版本。

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号