参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String s = scanner.nextLine(); String []word = s.split("(\\s)+"); int n = word.length; System.out.print(word[0].length()); for(int i = 1; i < n; i++) System.out.print("," + word[i].length()); } }
0.0分
4 人评分
WU-C语言程序设计教程(第三版)课后习题11.12 (C++代码)(想学链表的小伙伴可以看看)浏览:964 |
A+B for Input-Output Practice (III) (C语言代码)浏览:594 |
有关字符,字符串的输入输出函数说明浏览:498 |
1126题解浏览:649 |
1035 题解浏览:875 |
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:571 |
交换Easy (C语言代码)浏览:805 |
C语言程序设计教程(第三版)课后习题6.9 (C++代码)浏览:522 |
C语言程序设计教程(第三版)课后习题8.2 (C++代码)浏览:671 |
纪念品分组 (C++代码)浏览:878 |