Assignemnt #20 More Questions

Code

    /// Name: Drew Boxold
    /// Period: 5
    /// Program Name: 20
    /// File Name: MoreQuestions.java
    /// Date Finished: 9/30/2015
    
    import java.util.Scanner;

    public class MoreQuestions
    {
        public static void main( String[] args )
        {
            Scanner keyboard = new Scanner(System.in);

            System.out.print( "How you doin? " );
            keyboard.next();

            System.out.print( "How is the weather? " );
            keyboard.next();

            System.out.print( "what music are you listening to right now? " );
             keyboard.next();
            
            System.out.print( "Kk bye! " );
            keyboard.next();
        }
    }
    

Picture of the output

Assignment 20