Facebook
From ljasfk, 2 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 161
  1. public class Main {
  2.     public static void main(String[] args) {
  3.         var ion=new Student(13,"Ion Testescu","1056",2);
  4.         ion.add(new Nota("Programare Java",5));
  5.         ion.add(new Nota("SDD",9));
  6.         ion.add(new Nota("PAW",10));
  7.         System.out.println(ion);
  8.     }
  9. }