-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.java
More file actions
44 lines (34 loc) · 1.35 KB
/
Copy pathUser.java
File metadata and controls
44 lines (34 loc) · 1.35 KB
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
42
43
44
import java.io.*;
import java.util.Scanner;
public class User {
private String name;
private int account_id;
static void input_word() {
System.out.println("Welcome! \n Go ahead and input your word for today!");
Scanner sc = new Scanner(System.in);
String word = sc.nextLine();
}
public static void main(String[] args) {
input_word();
WordChoice.get_confirmation();
WordChoice.submit_word();
WordChoice.language_choice();
Confirmation.showcase_word();
}
/*public static void main(String[] args) {
System.out.println("Welcome!\n Go ahead and input your word for today! \n Enter your choice: 1) Input your singular word for the day ");
Scanner sc = new Scanner(System.in);
String word = sc.nextLine();
static void input_word(){
System.out.println("Welcome!\n Go ahead and input your word for today! \n Enter your choice: 1) Input your singular word for the day ");
}
System.out.println("Your word choice for today is: " + word);
/*int choice = sc.nextInt();
do{
switch(choice){
case 1: WordChoice W = new WordChoice();
W.Choice();
break;
}
}*/
}