Question: Below is some code your co-worker implemented, but they're asking you for help because it's not working the way they want it to. The code


Below is some code your co-worker implemented, but they're asking you for help because it's not working the way they want it to. The code should act in the following way: if value is greater than zero but less than 10, getNumberBack should return 1 if value is less than zero, getNumberBack should return 2 otherwise, getNumberBack should return 3 Re-write the code below such that the logic is correct. Think about how you might explain what went wrong to your co-worker. 1 public int getNumberBack(int value) { 2 int returnValue 3; 3 if (value > 0 && value
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
