Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Write the following 2 static methods: public static int ComputeOddSum(int input) public static int ComputeEvenSum(int input) The method ComputeOddSum...
Write the following 2 static methods:
public static int ComputeOddSum(int input)
public static int ComputeEvenSum(int input)
The method ComputeOddSum find the sum of all odd numbers less than input.
The method ComputeEvenSum find the sum of all even numbers less than input.
Now, test these 2 methods by prompting the user to input a number each time until a negative number is entered.