id/email
password
forgot password
about | help | done | prefs | create account
CodingBat code practice

Java > Logic-2 > loneSum
prev  |  next  |  chance

Given 3 int values, a b c, return their sum. However, if one of the values is the same as another of the values, it does not count towards the sum.

loneSum(1, 2, 3) → 6
loneSum(3, 2, 3) → 2
loneSum(3, 3, 3) → 0

...Save, Compile, Run

See also Java Example Code. Java help docs: If Boolean Logic | Strings | While and For Loops | Arrays and Loops


prev  |  next  |  chance   |  CodingBat  >  Logic-2

Forget It! -- delete my code for this problem 206.0

Copyright Nick Parlante 2006-10 - privacy