Write a program that will figure the missing side of a right triangle using the pythagorean theorem Assume that the user entries will make a triangle (i.e. side C cannot be less than side A or side B)
Program must contain the following specifications
Ask the user which side to figure
Prompt the user for the other two sides
Good user prompts
Output is descriptive
Must use methods...You will need at least the following methods
public static int figureSideA (int b, int c)
public static int figureSideB (int a, int c)
public static int figureSideC (int a, int b)
(Make a drawing of the triangle)
(Make a drawing of the triangle with the correct value for each side printed - a, b, and c)
(Make your program repeat - ask the user if they want to exit the program)