-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser.java
46 lines (30 loc) · 1015 Bytes
/
User.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
42
43
44
45
46
package devmetech;
import java.util.Scanner;
public class User implements properties {
String pro="User";
String argument = "";
Scanner scan = new Scanner(System.in);
public void savemovie() {
System.out.println("Developers TECH_MET_PRO");
System.out.println(" Save movie?");
String ar ="";
ar=scan.nextLine();
System.out.println(" You saved the movie as "+pro);
System.out.println("Thanks for visiting DEVELOPER TECH_MET_PRO");
}
public void savebook() { System.out.println("Developers TECH_MET_PRO");
System.out.println(" Save Book");
String ar ="";
ar=scan.nextLine();
System.out.println(" You saved the BOOK as "+pro);
System.out.println("Thanks for visiting DEVELOPER TECH_MET_PRO");
}
public void ratemovie() {
}
public void ratebook() {
}
public void postreview() {
}
public void saveweblink() {
}
}