Winkelmandje
Sign in to test your solution.
import java.util.ArrayList;
public class Winkelmandje{
private ArrayList<Product> mandje;
public Winkelmandje()
{
mandje = new ArrayList<Product>();
}
public Product duursteProduct()
{
Product duurste = null;
if(mandje.size() > 0){
duurste = mandje.get(0);
}
for ...
return duurste;
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.