编写题解 1505: 蓝桥杯算法提高VIP-单词个数统计 摘要:解题思路:数空格,最后结果比空格多一注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;int …… 题解列表 2025年01月24日 1 点赞 0 评论 42 浏览 评分:0.0
数单词?数空格! 摘要:解题思路:空格的格数加一就是单词数注意事项:gets危险 所以用getline fgets也行参考代码:#include <iostream>using namespace std;int main(…… 题解列表 2024年11月25日 1 点赞 0 评论 86 浏览 评分:0.0
c++间接方法,超级简单 摘要:解题思路:一段话中判断英语单词的个数,其实可以间接来做,就是通过英文空格的个数,进而判断单词出现的个数注意事项:能通过所有测试,我不清楚题目说的英文输入包括不包括标点符号,如果仅仅只是看单词的输入的话…… 题解列表 2024年02月27日 0 点赞 0 评论 80 浏览 评分:0.0
最简单思路 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s); int …… 题解列表 2023年08月04日 0 点赞 0 评论 78 浏览 评分:0.0
统 计 空 格 数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s); int …… 题解列表 2023年04月07日 0 点赞 0 评论 76 浏览 评分:9.9
LikeWater - 1505: 蓝桥杯算法提高VIP-单词个数统计 摘要:```cpp #include using namespace std; // 题目描述 // 编写一个程序,输入一个字符串(长度不超过80), // 然后统计出该字符串当中包含有多少个单词…… 题解列表 2023年02月27日 0 点赞 1 评论 46 浏览 评分:9.9
1505: 蓝桥杯算法提高VIP-单词个数统计 摘要:```cpp #include #include using namespace std; int main() { char a[80]; gets(a); …… 题解列表 2023年01月30日 0 点赞 0 评论 121 浏览 评分:9.9
蓝桥杯算法提高VIP-单词个数统计 摘要:#include<bits/stdc++.h> using namespace std; int main(void){ int cnt=1; string s; getline(ci…… 题解列表 2022年12月06日 0 点赞 0 评论 103 浏览 评分:9.9
题解 1505(超简单): 蓝桥杯算法提高VIP-单词个数统计 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main(){ string s; getlin…… 题解列表 2022年11月29日 0 点赞 0 评论 50 浏览 评分:8.0
1111111111111111111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; int t=0; wh…… 题解列表 2022年08月07日 0 点赞 0 评论 110 浏览 评分:0.0