Assignemnt #21 Rude Questions

Code

    /// Name: Brendan Miller
    /// Period: 5
    /// Program Name: Rude Questions
    /// File Name: RudeQuestions.java
    /// Date Finished: 10/4/2015 
  
    import java.util.Scanner;
 
    public class RudeQuestions
    {
         public static void main( String[] args )
        {
             String name;
             int age;
             double swag, income;
    
             Scanner keyboard = new Scanner(System.in);
    
             System.out.print( "Hello. What is your name? " );
             name = keyboard.next();
 
             System.out.print( "Hi, " + name + "! How old are you? " );
             age = keyboard.nextInt();
 
             System.out.println( "So you're " + age + ", eh? That's not old at all." );
             System.out.print( "How much swag do you have, " + name + "? " );
             swag = keyboard.nextDouble();
 
             System.out.print( swag + "! Better keep that quiet. Finally, what's your income, " + name + "? " );
             income = keyboard.nextDouble();
 
             System.out.println( "Hopefully that is " + income + " per hour and not per year!" );
             System.out.println( "Well, thanks for answering my dope questions, " + name + "." );
        }
    }

    

Picture of the output

Assignment 1