Assignemnt #23 and More User Input

Code

    /// Name: Josh Pell
    /// Period: 6
    /// Program Name: More User Input
    /// File Name: MoreUserInput.java
    ///Date Finished: 10/9/2015
    
   import java.util.Scanner;
  
   public class MoreUserInput
   {
       public static void main( String[] args )
       {
           Scanner keyboard = new Scanner(System.in);
           
           String first, last, login;
           int grade, id;
           double gpa;
   
           
   
           System.out.println( "Please enter the following information so I can sell it for a profit" );
           
   
           System.out.print( "First name: " );
           first = keyboard.next();
           System.out.print( "Last Name: " );
           last = keyboard.next();
           System.out.print( "Grade (9-12): " );
           grade = keyboard.nextInt();
           System.out.print( "Student ID: " );
           id = keyboard.nextInt();
           System.out.print( "Login: " );
           login = keyboard.next();
           System.out.print( "GPA (0.0-4.0): ");
           gpa = keyboard.nextDouble();
           
           System.out.println( "Your Information: ");
            System.out.println( "   Login: " + login + "");
            System.out.println( "   ID: " + id + "");
            System.out.println( "   Name: " + last + ", " + first + "");
            System.out.println( "   GPA: " + gpa + "");
            System.out.println( "   Grade: " + grade + "");
       }
   }

           
   
           
   

Picture of the output

Assignment 23