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

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

筛选

简单易懂,极简

摘要:解题思路:注意事项:参考代码:int main(){ int x = 0; int y = 0; while ((x = getchar()) != '\n') { if (x ==……

双指针 找单词

摘要:```cpp #include using namespace std; string s1; int main(){ getline(cin, s1); int sum ……

c++简单输出

摘要:#include<iostream>#include<string>using namespace std;int main(){    string a;    int flag=0;    whi……

单词个数统计题解

摘要:解题思路:利用scanf遇空格停止输入的特性,很容易就可以想到怎么写注意事项:参考代码:#include<stdio.h>int main(){    char a[1000];    int i=0……