🎓 Grade Calculator
A simple Java Console Application that calculate a student's Total Marks, Average, and Grade based on marks entered for multiple subject.
📌 Features Accepts student name Accept number of subjects Take marks for each subject Calculates: ✅ Total Marks ✅ Average Marks ✅ Grade (A–F) Simple and beginner-friendly Java project
🛠️ Technologies Used Java Scanner Class (User Input) Conditional Statements (if-else) Loops (for loop)
📂 Project Structure GradeCalculator.java README.md
💻 Sample Output Enter the student's name: Rahul Enter number of subjects: 3 Enter marks for subject 1: 85 Enter marks for subject 2: 90 Enter marks for subject 3: 88
Total Marks: 263 Average: 87.66666666666667 Grade: B
🚀 Future Improvements
- Add input validation (e.g., marks between 0–100)
- Support for grade comments (e.g., "Excellent", "Needs Improvement")
- Store student records in a file Add GUI using Java Swing or JavaFX