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的用法
-
mysql count方法的高级用法示例:
-
MySQL知识点补充(不同count()的用法、union执行流程、group by语句)
-
count(*)和count(1)的区别
-
Rails ActiveRecord的find和find_by_id方法 博客分类: Rails railsActiveRecordfindActiveRecord::RecordNotFound
-
【C++】malloc/free和new/delete的区别及用法
-
STL中二分查找函数的用法-关于lower_bound( )和upper_bound( )的常见用法
-
LeetCode 34. 在排序数组中查找元素的第一个和最后一个位置 Find First and Last Position of Element in Sorted Array(C语言)
-
子网掩码的作用和用法
-
[一起学Hive]之十一-Hive中Join的类型和用法 博客分类: hive hiveHive Join