/** * Hallo6. * Zugriff auf Äpfel zwecks Preisberechnung * @author teicher */ public class Hallo6 { public static void main(String[] x) { Apfel a = new Apfel(); a.gewicht = 117; // Gramm a.sorte = 1; // Granny Smith Apfel b = new Apfel(); b.gewicht = 199; // Gramm b.sorte = 4; // Golden Delicious System.out.println("Apfel a kostet "+a.getPreis()+" EUR"); System.out.println("Apfel b kostet "+b.getPreis()+" EUR"); } }