Assignment #23 and More User Input
Code
/// Name: Ali Kurland
/// Period: 6
/// Program Name: More User Input
/// File Name: MoreUserInput.java
/// Date Finished: 9/17/2015
import java.util.Scanner;
public class MoreUserInput
{
public static void main( String[] args )
{
String firstName, lastName, login;
int grade, studentId;
double gpa;
Scanner keyboard = new Scanner(System.in);
System.out.println( "Please enter the following information so I can sell it for a profit!" );
System.out.print( "First name: " );
firstName = keyboard.next();
System.out.print( "Last name: " );
lastName = keyboard.next();
System.out.print( "Grade (9-12): " );
grade = keyboard.nextInt();
System.out.print( "Student ID: " );
studentId = keyboard.nextInt();
System.out.print( "Login: " );
login= keyboard.next();
System.out.print( "GPA (0.0-4.0): " );
gpa = keyboard.nextDouble();
System.out.println( " " );
System.out.println( "Your information: " );
System.out.println( " Login: " + login );
System.out.println( " ID: " + studentId);
System.out.println( " Name: " + lastName + ", " + firstName );
System.out.println( " GPA: " + gpa );
System.out.println( " Grade: " + grade );
}
}
Picture of the output