-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWordChoice.java
More file actions
50 lines (42 loc) · 1.33 KB
/
Copy pathWordChoice.java
File metadata and controls
50 lines (42 loc) · 1.33 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
45
46
47
48
49
50
import java.util.Scanner;
import java.util.Date;
import java.io.*;
public class WordChoice extends User {
public String word;
private Date day_rating;
private int char_limit;
User es = new User();
public static void get_confirmation() {
Confirmation.showcase_word();
}
public static void submit_word() {
System.out.println("Press one to submit!");
}
public static void language_choice() {
System.out.println("Welcome! \n Go ahead and input your word for today!");
}
/*public String getWord() {
return word;
}
public void setWord(String word) {
this.word=word;
}
public Date getDay_rating() {
return day_rating;
}
public void get_confirmation() {
System.out.println("Thanks for paying idiot, now fix me");
}
public void submit_word() {
System.out.println("Hurry!!!");
}
public void Choice(){
System.out.println("Press (1) if you would like a confirmation!");
Scanner sc = new Scanner(System.in);
int choice = sc.nextInt();
switch(choice){
case 1: Confirmation C = new Confirmation();
C.Choice();
break;
}*/
}