| about | help | done | prefs | create account |
Java > Logic-1 > teaParty
prev | next | chance
| We are having a party with amounts of tea and candy. Return the int outcome of the party encoded as 0=bad, 1=good, or 2=great. A party is good (1) 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 (2). However, in all cases, if either tea or candy is less than 5, the party is always bad (0).
teaParty(6, 8) → 1 teaParty(3, 8) → 0 teaParty(20, 6) → 2 ...Save, Compile, Run See also Java Example Code. Java help docs: If Boolean Logic | Strings | While and For Loops | Arrays and Loops |
Forget It! -- delete my code for this problem 133.0
Copyright Nick Parlante 2006-10 - privacy