import java.util.Scanner;

class Jan22 {
	public static void main(String[] args) {
		String firstName = "Joe";
		String lastName = "Black";
		String fullName = firstName + " " + lastName;

		System.out.printf("full name: %s\n", "Bo");
		System.out.printf("full name: %s\n", fullName);

		Scanner kb = new Scanner(System.in);

		System.out.print("Enter name: ");
		firstName = kb.next();

		System.out.printf("firstName: %s\n", firstName);

		// eat up \n before calling nextLine()
		kb.nextLine();

		System.out.print("Enter full name: ");
		fullName = kb.nextLine();

		System.out.printf("full name: %s\n", fullName);
	
		System.out.print("Enter password: ");
		String password = kb.next();

		System.out.printf("password: %s\n", password);

		System.out.print("Enter GPA: ");
		double gpa = kb.nextDouble();

		System.out.printf("gpa: %.2f\n", gpa);

		// Get character from user

		System.out.print("Enter initial: ");
		String input = kb.next();
		char initial = input.charAt(0);

		System.out.printf("initial: %c\n", initial);

		System.out.printf("\n\n%s\t%f\t%c\n", fullName, gpa, initial);




	
	}
}
