-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
27 lines (18 loc) · 682 Bytes
/
Main.java
File metadata and controls
27 lines (18 loc) · 682 Bytes
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
import java.io.FileNotFoundException;
import java.util.Scanner;
public class Main
{
public static void main(String[] args) throws FileNotFoundException
{
wel_come();
}
public static void wel_come() throws FileNotFoundException
{
Scanner input = new Scanner(System.in);
System.out.println("WEL COME UNIVERSITY DATA HANDLING SYSTEM");
System.out.println("Enter Your Choice\n 1.Teacher Details\n 2.Typist Details\n 3.Officer Details \n CHOICE :");
char choice = input.next().charAt(0);
choice_handling my_obj = new choice_handling();
my_obj.choice_handler(choice);
}
}