-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathScr11.java
41 lines (39 loc) · 1.14 KB
/
Scr11.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
30
31
32
33
34
35
36
37
38
39
40
41
import java.util.Scanner;
public class Scr11 {
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();
switch(input){
case "hello": System.out.println("hello there");
break;
case "exit": System.out.println("come again sometime!");
break;
case "open door": if(location.equals("house")){
location = "lawn";
}
break;
case "look":
switch(location){
case "house": System.out.println("You are in a small wooden house. You can see"
+ " the front door");
break;
case "lawn": System.out.println("You are on a front lawn, a house behind you.");
}
break;
default: System.out.println("what?");
}
}
}
}