This is a JavaFX program for managing student grades and attendance with GUI.
- Java Development Kit (JDK) 11 or higher installed on your system.
- JavaFX SDK downloaded and extracted to a directory on your system.
Open your terminal or command prompt and navigate to the directory containing the source code (UserInterface.java).
Run the following command to compile the program:
javac --module-path /path/to/javafx-sdk/lib --add-modules javafx.controls,javafx.fxml UserInterface.java
Replace /path/to/javafx-sdk/lib
with the actual path to the lib directory inside your JavaFX SDK installation.
After successful compilation, run the following command to execute the program:
java --module-path /path/to/javafx-sdk/lib --add-modules javafx.controls,javafx.fxml UserInterface
Replace /path/to/javafx-sdk/lib
with the actual path to the lib directory inside your JavaFX SDK installation.
Follow the on-screen instructions to interact with the program. You'll be prompted to enter the number of students to register and then input various scores and attendance details for each student.
Feel free to contribute to the development of this program by submitting pull requests or reporting any issues you encounter.