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

5 years ago
5 years ago
  1. package ugsbo.com.buchhaltung;
  2. public class Auswertung {
  3. public static void main(String[] args) {
  4. // TODO Auto-generated method stub
  5. Blockchain Work = new Blockchain();
  6. Work.add(50);
  7. Work.add(-20);
  8. System.out.println(Work.kontostand());
  9. System.out.print(Work.toString());
  10. }
  11. }