// // P.22 // // Q5: Read full names and their scores and out the data // import java.util.Scanner; public class ReadFullNameScore { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("Input a full name: "); String name = input.nextLine(); System.out.print("Input his/her score: "); int score = input.nextInt(); // 78 System.out.println(name + " " + score); String dummy = input.nextLine(); // consume '\n' follows 78 System.out.print("Input a full name: "); name = input.nextLine(); System.out.print("Input his/her score: "); score = input.nextInt(); System.out.println(name + " " + score); dummy = input.nextLine(); System.out.print("Input a full name: "); name = input.nextLine(); System.out.print("Input his/her score: "); score = input.nextInt(); System.out.println(name + " " + score); } }