Write two methods in Java that implements the following logic: Given 3 int values, a
, b
, and c
, return their sum. However, if any of the...
X22: noTeenSum
Write two methods in Java that implements the following logic: Given
3 int values, a
, b
, and c
, return their sum. However, if any
of the values is a teen--in the range 13..19 inclusive--then that
value counts as 0, except 15 and 16 do not count as teens. Write
a separate helper method called fixTeen()
that takes in an int
value and returns that value fixed for the teen rule. In this way
you avoid repeating the teen code 3 times (i.e. "decomposition").
Your Answer:
Feedback
Your feedback will appear here when you check your answer.