public class Rechner { public static void main (String args[]) { System.out.print("Eingabe Zahl 1: "); double zahl1 = Eingabe.leseDouble(); System.out.print("Eingabe Zahl 2: "); double zahl2 = Eingabe.leseDouble(); double ergebnis = zahl1 / zahl2; //System.out.println(ergebnis); System.out.println("Ergebnis: " + ergebnis + " Euro"); } }