-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathScr9.java
29 lines (27 loc) · 811 Bytes
/
Scr9.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import java.util.Scanner;
public class Scr9 {
public static void main(String args[]){
String[] items = new String[10];
items[0] = "apple";
int x = 12;
boolean isMorning = true;
String location = "house";
Scanner sc = new Scanner(System.in);
System.out.println("Welcome to the game!");
System.out.println("The current time is: " + x + " O'clock");
System.out.println("You are located at: " + location);
System.out.println("Morning: " + isMorning);
System.out.println("Item 1: "+ items[0]);
System.out.println("Enter command");
while(true){
String input = sc.nextLine();
if(input.equals("hello")){
System.out.println("hello there");
}else if(input.equals("exit")){
System.out.println("come again sometime!");
} else{
System.out.println("what?");
}
}
}
}