Question: Given 2 nonnegative ints, a and b, return their sum, so long as the sum has the same number of digits as a. If the

Given 2 nonnegative ints, a and b, return their sum, so long as the sum has the same number of digits as a. If the sum has more digits than a, just return a without b. (Note: one way to compute the number of digits of a nonnegative int n is to convert it to a string with String.value0f(n) and then check the length of the string.) sumLimit(2, 3) A 5 sumLimit(8, 3) A 8 sumLimit(8, 'l} A 9 For example: Test Result System. out. printlnlsumLimit (2, 2) ); 4 Answer: (penalty regime: Or 10, 20, 50r %) Reset answer 1v public int sumLtmit(tnt 0, int b) { Z // TODD your code goes here 3}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
