HomeWork Lesson
11
Write a Java Program
that will have the main method generate three random integer numbers
from 0 to 50 (inclusive). The program will then call
a function that will take those 3 numbers and return the square root of
the sum of the numbers. The main program will print the result.
Extra Credit (10 points)
In addition to the above criteriea, the main program will call a method
(void method) passing those same three random numbers. The method
will print the largest value of the three. _