Java Question:
Write a function with one integer parameter, N. The functionwill compute and return the sum of the integers from 1 to N. Namethe function: sumInts. Then write a complete program using thisfunction. The main function will prompt the user for an integer, N.The main function will call the sumInts function for every value Mfrom 1 up to N and print out:
• The value M
• The result of sumInts(M)
• The value of (M+1)*M / 2
Expert Answer
An answer will be send to you shortly. . . . .