-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudentManagementSystem.java
More file actions
134 lines (108 loc) · 3.53 KB
/
StudentManagementSystem.java
File metadata and controls
134 lines (108 loc) · 3.53 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import java.util.ArrayList;
import java.util.Scanner;
class Student{
private int id;
private String name;
private String course;
public Student(int id, String name, String course){
this.id=id;
this.name=name;
this.course=course;
}
public int getid(){
return id;
}
public void setName(String name){
this.name=name;
}
public void setCourse(String course){
this.course=course;
}
public void displaystudent(){
System.out.println(id+"\t"+name+"\t"+course);
}
}
public class StudentManagementSystem {
static ArrayList<Student> students = new ArrayList<>();
static Scanner sc = new Scanner(System.in);
public static void addstudent(){
int id=sc.nextInt();
sc.nextLine();
System.out.print("Enter Name: ");
String name = sc.nextLine();
System.out.print("Enter Course: ");
String course = sc.nextLine();
students.add(new Student(id,name,course));
System.out.println(" Student added successfully!");
}
public static void viewStudents() {
if (students.isEmpty()) {
System.out.println(" No student records found.");
return;
}
System.out.println("\nID\tName\tAge\tCourse");
System.out.println("--------------------------------");
for (Student s : students) {
s.displaystudent();
}
}
public static void updateStudent() {
System.out.print("Enter Student ID to update: ");
int id = sc.nextInt();
sc.nextLine();
for (Student s : students) {
if (s.getid() == id) {
System.out.print("Enter new Name: ");
s.setName(sc.nextLine());
System.out.print("Enter new Course: ");
s.setCourse(sc.nextLine());
System.out.println("Student updated successfully!");
return;
}
}
System.out.println("Student not found.");
}
public static void deleteStudent() {
System.out.print("Enter Student ID to delete: ");
int id = sc.nextInt();
for (Student s : students) {
if (s.getid() == id) {
students.remove(s);
System.out.println("Student deleted successfully!");
return;
}
}
System.out.println("Student not found.");
}
public static void main(String[] args) {
while (true) {
System.out.println("\n====== Student Management System ======");
System.out.println("1. Add Student");
System.out.println("2. View Students");
System.out.println("3. Update Student");
System.out.println("4. Delete Student");
System.out.println("5. Exit");
System.out.print("Enter choice: ");
int choice = sc.nextInt();
switch (choice) {
case 1:
addstudent();
break;
case 2:
viewStudents();
break;
case 3:
updateStudent();
break;
case 4:
deleteStudent();
break;
case 5:
System.out.println("Exiting program. Thank you!");
return;
default:
System.out.println("Invalid choice!");
}
}
}
}