class Frucht { static int wert; public void create(int neuWert) { wert = neuWert; } public void faulen() { wert -=3; } public int wertNachsehen() { return wert; } }