kinda stuck on this one homework question where the program is meant to return all the Golden Medals achieved by the Olympians. Do I have to use the FOR loop for that? How would it look? That's the code so far...
public class Analyser
{
private ArrayList<Olympian> olympians;
public Analyser()
{
olympians = new ArrayList<Olympian>();
}
public void addOlympian(String name, int gold, int silver, int bronze)
{
olympians.add(new Olympian(name, gold, silver, bronze));
}
}

Forloop to iterate over your ArrayList. Now try it out, and come up with some code. – Rohit Jain Nov 17 '12 at 17:32