/** * Der Rucksack höchstpersönlich * * @author David * @version 18.5.06 */ public class Rucksack { private int [] werte; private int [] gewichte; public Rucksack(int[] wert, int[] gewicht){ werte = wert; gewichte = gewicht; } public int[] gibWerte(){ return werte; } public int[] gibGewichte(){ return gewichte; } }