Assignemnt #16 More Questions

Code

    ///Name: JJ Deng
    ///Period: 6
    ///Progame Name: More Questions
    ///File Name: MoreQuestions.java
    ///Date Finished: 9/29/15
    
    import java.util.Scanner;
    
    public class MoreQuestions
    {
        public static void main( String[] args )
        {
            Scanner HumanType = new Scanner(System.in);
            
            System.out.println( "What city is the capital of France?" );
            HumanType.next();
            
            System.out.println( "What is 6 multiplied by 7?" );
            HumanType.nextInt();
            
            System.out.println( "What is your favorite number between 0.0 and 1.0?" );
            HumanType.nextDouble();
            
            System.out.println( "Is there anything else you would like to tell me?" );
            HumanType.next();
            
        }
    }
    

Picture of the output

Assignment 16