Scanner を使用して、キーボードから一連の文字列をすべて 1 行で読み取り、それらを連結するにはどうすればよいですか。
これが私がこれまでに持っているコードです:
import java.util.Scanner;
public class Exam12Practice {
public static void main(String[] args)
{
Scanner input=new Scanner(System.in);
String words="";
System.out.println("enter a word");
while(input.hasNext())
{
words = words.concat(input.next());
}
System.out.println(words);
}
}