0
/ 50
Write a function in Java that implements the following logic: Given 3 int values, a
, b
, and c
, return their sum. However, if one of the...
Write a function in Java that implements the following logic: Given
3 int values, a
, b
, and c
, return their sum. However, if one
of the values is 13 then it does not count towards the sum and
values to its right do not count. So for example, if b
is 13,
then both b
and c
do not count.
Your feedback will appear here when you check your answer.