Kotlinlearncs.online LogoJava
Return to List

Solve: Tea Party

Imported By: Geoffrey Challen
/ Version: 2021.6.0

We are having a party with amounts of tea and candy. Return the outcome of the party encoded as as in int where 0=bad, 1=good, or 2=great. A party is good if both tea and candy are at least 5. However, if either tea or candy is at least double the amount of the other one, the party is great. However, in all cases, if either tea or candy is less than 5, the party is always bad.

int teaParty(int tea, int candy) {
return 0; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: