a) Write the code that reads values for a,b,c and displays their sum, repeating this process as long as none of the three values are negative.
b) write the code that reads an integer number called test. With a loop, read 5 more numbers counting how many numbers are less than testValue, how many numbers are equal to test, and how many numbers are greater than test.
c) Write the code that adds the integer number 1 through 10. Print the sum as it is being generated in the loop and at the end of the program.