Assignemnt #20
Code
/// Name: Connor Siri
/// Period: 7
/// Program Name: More
/// File Name: More.java
/// Date Finished: 9/21/2015
import java.util.Scanner;
class More{
public static void main(String[] args) {
Scanner keyboard = new Scanner(System.in);
System.out.println( "What city is the capital of England?" );
keyboard.next();
System.out.println( "What is 5 multiplied by 7? " );
keyboard.nextInt();
System.out.println("What is your favorite number between 50 and 100? ");
keyboard.nextDouble();
System.out.println( "Is there anything else you would like to tell me?" );
keyboard.next();
}
}
Picture of the output