单词个数统计-题解——C语言代码 摘要:### 解题思路 判断只要空格所在的位置不是第一个或者最后一个的时候,则计数加1,因为空格不能加上最后一位,所以加1,也可以写成初始时sum=1; 最后直接附上代码 ```…… 题解列表 2020年11月30日 0 点赞 0 评论 442 浏览 评分:9.9
(史上最简单版)单词个数统计 摘要:解题思路:这里我们可以知道单词与单词之间隔着一个空格,所以我们只要统计空格个数,最后加一即可注意事项:这里我们要用到一个头文件就是如下第二行代码,这个可以统计数字,空格,等字符的个数,所以非常方便参考…… 题解列表 2022年11月20日 0 点赞 0 评论 89 浏览 评分: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 评论 98 浏览 评分:9.9
1505: 蓝桥杯算法提高VIP-单词个数统计 摘要:```cpp #include #include using namespace std; int main() { char a[80]; gets(a); …… 题解列表 2023年01月30日 0 点赞 0 评论 116 浏览 评分:9.9
3行解决,使用count计数函数 摘要:解题思路:用count函数读取空格数量,再存入变量b,在加1完成注意事项:参考代码:# 1505a = input()b = a.count(" ",0,len(a)) + 1print(b)…… 题解列表 2024年11月07日 0 点赞 0 评论 56 浏览 评分:9.9
1505: 蓝桥杯算法提高VIP-单词个数统计——Ccp 摘要:解题思路:注意事项:参考代码:#include<string.h>int main(){ char str[80]; int i; gets(str); int counts=0; for(i=0;i…… 题解列表 2023年03月09日 0 点赞 0 评论 75 浏览 评分:9.9
蓝桥杯算法提高VIP-单词个数统计-题解(Python代码) 摘要:解题思路:注意事项:参考代码:a=list(map(list,input().split()))print(len(a))代码太短也没办法。。。…… 题解列表 2020年11月20日 0 点赞 0 评论 363 浏览 评分:9.9
蓝桥杯算法提高VIP-单词个数统计-题解(Java代码) 摘要:解题思路:/*编写一个程序,输入一个字符串(长度不超过80),* 然后统计出该字符串当中包含有多少个单词。* 例如:字符串“this is a book”当中包含有4个单词。*/ 注意事项…… 题解列表 2021年01月11日 0 点赞 0 评论 380 浏览 评分:9.9
蓝桥杯算法提高VIP-单词个数统计(c) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> #include<ctype.h> #define M 101 int main() …… 题解列表 2022年02月11日 0 点赞 0 评论 217 浏览 评分:9.9
简单易懂,极简 摘要:解题思路:注意事项:参考代码:int main(){ int x = 0; int y = 0; while ((x = getchar()) != '\n') { if (x ==…… 题解列表 2022年04月30日 0 点赞 0 评论 125 浏览 评分:9.9