题解 2867: 单词的长度

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

筛选

超级简单,用了循环和字符串函数,

摘要:解题思路:只要不是空格,就直接加,不用考虑字符是字母还是数字。注意事项:使用标记变量处理逗号问题。参考代码:#include <stdio.h>#include <string.h>int main(……

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main  { public static void main(String[] args)     ……

2867: 单词的长度

摘要:解题思路:注意事项:参考代码:a=input().split()length=0for i in a:    length+=1    if length!=len(a):        print(……

2867-单词的长度

摘要:解题思路:注意事项:本题如果用C++语言会特别的方便,因为C++语言中有单词分隔函数。用C语言可能比较繁琐。参考代码:int main(){ char s[1001]; int len,i; ……

2867: 单词的长度(python)

摘要:解题思路:注意事项:参考代码:s = list(input().strip().split()) l = [str(len(i)) for i in s] print(",".join(l))……

单词的长度(istringstream)

摘要:解题思路:  利用sstream 头文件中的istringstream 函数自动分出单词(以字符串的形式保存), 后面直接打印size函数注意事项:参考代码:#include<iostream>#in……

单词的长度

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char a[1000]; int n[300]={}; /……

单词的长度

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

2867: 单词的长度 c++简洁版

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() {     boo……