Advertisement
Vladkoheca

main.java

Dec 13th, 2024
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | Source Code | 0 0
  1. public class Main {
  2.     public static void main(String[] args) {
  3.  
  4.         Classroom classroom = new Classroom("The Best class", 2);
  5.         classroom.addStudent();
  6.         classroom.displayStudents();
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement