Assignemnt #20 More Questions

Code

    Name: Iaroslav Titov
    Period: 7
    Project Name: ForgetfulMachine
    File Name: ForgetfulMachine.java
    Date: 9/22/2015
    
import java.util.Scanner;
import java.util.InputMismatchException;
  
  public class ForgetfulMachine
  {
      public static void main( String[] args )
      {
         Scanner keyboard = new Scanner(System.in);
        
        try 
        {
            System.out.println( "What city is the capital of France?" );
            keyboard.next();   
            
            System.out.println( "What is 6 multiplied by 7?" );
            keyboard.nextInt();
    
            System.out.println( "What is your favorite number between 0.0 and 1.0?" );
            keyboard.nextDouble();

            System.out.println( "Is there anything else you would like to tell me?" );
            keyboard.next();
        }
        catch (InputMismatchException e)
        {
            System.out.println( "WRONG INPUT!!!" );
        }
     }
 }
    

Picture of the output

Assignment 17