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.

15 lines
312 B

package ugsbo.com.buchhaltung;
public class Auswertung {
public static void main(String[] args) {
// TODO Auto-generated method stub
Blockchain Work = new Blockchain();
Work.add(50);
Work.add(-20);
System.out.println(Work.kontostand());
System.out.print(Work.toString());
}
}