-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdmin.java
34 lines (25 loc) · 1.03 KB
/
Admin.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
package devmetech;
import java.util.Scanner;
public class Admin extends Products implements properties {
Products product_for_Admin = new Products();
Scanner scan = new Scanner(System.in);
String pro="ADMIN";
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 movie as "+pro);
System.out.println("Thanks for visiting DEVELOPER TECH_MET_PRO");}
public void ratemovie(){}
public void ratebook(){}
public void postreview(){}
public void saveweblink(){}
}