姓と名を 1 つの文字列に入力してから、姓と名を別々の行に表示しようとしています。私は nextLine(); と思った。コマンドは機能しますが、姓と名が別々の行に表示されません
String full_name;
System.out.println("Please enter your first and last name?");
full_name = c.nextLine();
System.out.printf("Your name is: "+ full_name);