public class test {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Please insert a word.: ");
String word = (" ");
while (in.hasNextLine()){
System.out.println(in.next().charAt(0));
}
}
}
我试图从输入中读取每个字母并用空格分隔。
例如:输入是Yes.
输出应该是
Y
E
S
.
我不明白如何使字符转到输入中的下一个字母。任何人都可以帮忙吗?