【字符串函数】Y

编程入门 行业动态 更新时间:2024-10-24 01:55:34

【<a href=https://www.elefans.com/category/jswz/34/1771434.html style=字符串函数】Y"/>

【字符串函数】Y

#iostream
isalpha(ch);  小写字母返回2 大写字母返回1 其他返回0
islower() || isupper()  返回 1 / 0
tolower 字母转小写, 非字母不操作
toupper 转大写#cstring
strncmp(a + i, b + j, n) 字符数组前几位比较#include <iostream>
#include <cstring>
using namespace std;char s[1000010];int main()
{int ans = 0;while (gets(s)) /// 整行输入{int len = strlen(s);for (int i = 0; i < len; i++)s[i] = tolower(s[i]);for (int i = 0; i < len; i++)if (strncmp(s + i, "doge", 4) == 0)ans++;}cout << ans << endl;return 0;
}

 

Input

An article that Doge wants to know.
The size of the article does not exceed 64KB. The article contains only ASCII characters.

 

 

Output

Please output the number of word “doge” (case-insensitive). Refer to the samples for more details.

 

 

Sample Input

 

adoge

cutedo

yourge

blownDoge

lovelyDooge

Wow! Such Dooooooooooooooge!!!

D0ge

dOge DOGE

dogedoge

 

 

Sample Output

 

6

 

 

Source

2014西安全国邀请赛

 

更多推荐

【字符串函数】Y

本文发布于:2024-02-06 14:48:24,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1749786.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:字符串   函数

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!