欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

find和count的用法

程序员文章站 2024-03-20 22:44:46
...
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
    string n;
    cin>>n;
    int cnt=count(n.begin(),n.end(),'a');
    int f=n.find('a');
    cout<<cnt<<endl;
    cout<<f;
    return 0;
}

find和count的用法