Ultra Geile Studenten Benutzer Oberfläche (UGSBO)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
312 B

5 years ago
5 years ago
  1. package ugsbo.com.notenSpeicher;
  2. public class Auswertung {
  3. public static void main(String[] args) {
  4. NotenKette Work = new NotenKette("Prog 1", 1);
  5. Work.add("Prog 2", 2);
  6. Work.add("Wi", 3);
  7. System.out.println(Work.durchschnitt() + "\n");
  8. System.out.print(Work.toString());
  9. }
  10. }