c++间接方法,超级简单
摘要:解题思路:一段话中判断英语单词的个数,其实可以间接来做,就是通过英文空格的个数,进而判断单词出现的个数注意事项:能通过所有测试,我不清楚题目说的英文输入包括不包括标点符号,如果仅仅只是看单词的输入的话……
LikeWater - 1505: 蓝桥杯算法提高VIP-单词个数统计
摘要:```cpp
#include
using namespace std;
// 题目描述
// 编写一个程序,输入一个字符串(长度不超过80),
// 然后统计出该字符串当中包含有多少个单词……
1505: 蓝桥杯算法提高VIP-单词个数统计
摘要:```cpp
#include
#include
using namespace std;
int main()
{
char a[80];
gets(a);
……
蓝桥杯算法提高VIP-单词个数统计
摘要:#include<bits/stdc++.h>
using namespace std;
int main(void){
int cnt=1;
string s;
getline(ci……
题解 1505(超简单): 蓝桥杯算法提高VIP-单词个数统计
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>
using namespace std;
int main(){
string s;
getlin……
1111111111111111111111111111111111111111111111111111111111111
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; int t=0; wh……
蓝桥杯算法提高VIP-单词个数统计 题解(c++谨慎型)
摘要:解题思路:看了以为大佬的讲解,恍然大悟,原来字符串必须要慎之又慎!注意事项:要用getline输入。参考代码:#include<bits/stdc++.h>using namespace std;st……