0
/ 1.0
Write a function in Java that implements the following logic: Given 2 ints, a
and b
, return their sum. However, "teen" values in the...
Write a function in Java that implements the following logic:
Given 2 ints, a
and b
, return their sum. However, "teen"
values in the range 13..19 inclusive, are extra lucky. So if
either value is a teen, just return 19.
Your feedback will appear here when you check your answer.