1. Create a java program that goes into a loop and then (continuously) prompts the user for three values. The user is then asked if he/she would like to select the largest of the three values or the smaller of the three values. The program should then display the correct result, and prompt the user to go again or exit.
The app should also handle the situation in which all three values are equal by stating "val1,val2,val3 are equal
2. Using the code from Bucky's Java videos 50-55 (on Youtube.com), develop a GUI (JFrame) application that has two text boxes, one label, and one button. Your user should be able to enter an integer in each text box, and when the user hits the button, the application adds the two values and displays the result in the label.