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

 

pais@kinetigram.com > L32_loneSum
prev  |  next  |  chance

APCS Logic 3, Problem 2. 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.


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

...Save, Compile, Run (ctrl-enter)

public int L32_loneSum(int a, int b, int c) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 200

Copyright Nick Parlante 2017 - privacy