-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudentManagementSystem.java
More file actions
140 lines (118 loc) · 4.29 KB
/
StudentManagementSystem.java
File metadata and controls
140 lines (118 loc) · 4.29 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
135
136
137
138
139
140
import java.util.ArrayList;
import java.util.Scanner;
public class StudentManagementSystem {
static ArrayList<Student> students = new ArrayList<>();
static Scanner scanner = new Scanner(System.in);
public static void main(String[] args) {
int choice = 0;
do {
System.out.println("\n===== Student Management System =====");
System.out.println("1. Add Student");
System.out.println("2. View All Students");
System.out.println("3. Search Student by Roll Number");
System.out.println("4. Delete Student");
System.out.println("5. Exit");
System.out.println("6. Update Student");
System.out.print("Enter your choice: ");
if (!scanner.hasNextInt()) {
System.out.println("Invalid input! Please enter a number between 1 and 6.");
scanner.next(); // clear wrong input
continue;
}
choice = scanner.nextInt();
scanner.nextLine();
switch (choice) {
case 1:
addStudent();
break;
case 2:
viewStudents();
break;
case 3:
searchStudent();
break;
case 4:
deleteStudent();
break;
case 5:
System.out.println("Exiting program...");
break;
case 6:
updateStudent();
break;
default:
System.out.println("Invalid choice!");
}
} while (choice != 5);
}
public static void addStudent() {
System.out.print("Enter Name: ");
String name = scanner.nextLine();
System.out.print("Enter Roll Number: ");
int roll = scanner.nextInt();
scanner.nextLine();
// Prevent duplicate roll number
for (Student s : students) {
if (s.rollNumber == roll) {
System.out.println("Error: Roll Number already exists!");
return;
}
}
System.out.print("Enter Grade: ");
String grade = scanner.nextLine();
students.add(new Student(name, roll, grade));
System.out.println("Student added successfully!");
}
public static void viewStudents() {
if (students.isEmpty()) {
System.out.println("No students found.");
} else {
for (Student s : students) {
s.displayStudent();
}
}
}
public static void searchStudent() {
System.out.print("Enter Roll Number to search: ");
int roll = scanner.nextInt();
scanner.nextLine();
for (Student s : students) {
if (s.rollNumber == roll) {
s.displayStudent();
return;
}
}
System.out.println("Student not found.");
}
public static void deleteStudent() {
System.out.print("Enter Roll Number to delete: ");
int roll = scanner.nextInt();
scanner.nextLine();
for (Student s : students) {
if (s.rollNumber == roll) {
students.remove(s);
System.out.println("Student deleted successfully!");
return;
}
}
System.out.println("Student not found.");
}
public static void updateStudent() {
System.out.print("Enter Roll Number to update: ");
int roll = scanner.nextInt();
scanner.nextLine();
for (Student s : students) {
if (s.rollNumber == roll) {
System.out.print("Enter new Name: ");
String newName = scanner.nextLine();
System.out.print("Enter new Grade: ");
String newGrade = scanner.nextLine();
s.name = newName;
s.grade = newGrade;
System.out.println("Student information updated successfully!");
return;
}
}
System.out.println("Student not found.");
}
}