source: Java_Quellcode_SOOP_Vorlesung/oop/DatumTest.java @ 398

Last change on this file since 398 was 398, checked in by tr, 7 years ago

Datum angepasst

File size: 264 bytes
Line 
1package eu.hsrw.tr.prog.vl.oop;
2
3public class DatumTest {
4
5    public static void main(String[] args) {
6        Datum d = new Datum(12, 2, 1900);
7
8        System.out.println(d);
9
10        for (int i = 1; i <= 24; i++) {
11            d.erhoehe();
12            System.out.println(d);
13        }
14    }
15}
Note: See TracBrowser for help on using the repository browser.