键盘输入两个字符串 str 和 substr,统计字符串 substr 在 字符串 str 中出现的次数,并输出。
输入描述:
键盘输入两个长度小于 100 的字符串 str 和 substr
输出描述:
输出字符串 substr 在 字符串 str 中出现的次数
示例1
输入
nihaohellowoshihello hello
输出
2
加载中...
#include
#include
using namespace std; int main() { char str[100] = { 0 }; char substr[100] = { 0 }; cin.getline(str, sizeof(str)); cin.getline(substr, sizeof(substr)); int count = 0; // write your code here...... cout << count << endl; return 0; }
nihaohellowoshihello hello
2