Posts

Showing posts with the label student record
 Write a program to add the Student Record in Java package inheritanceinjava; import java.util.ArrayList; import javax.swing.JOptionPane; public class InheritanceInJava {              ArrayList<Student> students = new ArrayList<>();         while(true){             int option = mainMenu();             switch(option)             {                 case 1:                     int i = Integer.parseInt(JOptionPane.showInputDialog("Enter the id :"));                     String n = JOptionPane.showInputDialog("Enter the name : ");                                          float c = Float.pa...