我是学java的新手,我一直写不出来这个题目,请版上的大大门帮我看一下我的程式
题目是: 取得句子里每个字母所占的长度,例如"THAT IS GOOD" 会回传一个LIST,
值为(4,2,4)。
小弟第一次PO文,若有违反版规,深感抱歉,会立即删除。
以下是我的程式
import java.util.Scanner;
public class practice
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
System.out.println("请输入任意");
String character = sc.nextLine();
String words[] = character.split(" ");
for(int i = 0; i< words.length; i++)
{
System.out.println(words[i].length);
}
}
}
我后面的程式码错了...
为什么Print后面不能print每个阵列里面的长度呢?