Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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));       
    }
}
share|improve this question
1  
Yes you have to use a For loop to iterate over your ArrayList. Now try it out, and come up with some code. – Rohit Jain Nov 17 '12 at 17:32

1 Answer

New method for the Analyser class

public int getAllGoldMedals()
{
    // INITIATE Return Variable
    int goldMedals = 0;

    // LOOP Through all the Olympians
    for (Olympian olympian : olympians)
    {
        goldMedals += olympian.getGoldMedals();
    }

    // RETURN The number of Gold Medals won by all of the Olympians
    return goldMedals;
}

New method (if not already implemented) for the Olympian class

public int getGoldMedals()
{
    // RETURNS The number of Gold Medals won by the Olympian
    return gold; // REPLACE WITH THE REAL GOLD MEDAL-VARIABLE
}
share|improve this answer
Thank you Tom!. – Amadeusz Olas Nov 18 '12 at 12:48
@AmadeuszOlas - No problem! Could you please upvote and accept my answer :) – Tom Nov 18 '12 at 13:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.