题解 1505: 蓝桥杯算法提高VIP-单词个数统计

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

最简单思路

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s); int ……

蓝桥杯算法提高VIP-单词个数统计

摘要:解题思路:注意事项:            1.string.h文件和strlen函数。            2.fgets函数:应该大家用C语言输入字符串时,用fgets函数,gets函数差不多已……

单词个数统计 (C++代码)

摘要:解题思路:单词之间使用空格隔开,注意事项:参考代码:#include <iostream>#include <string>using namespace std;int main (){ int c……