Question: The picture is the prompt, and the code is attached below. We are expected to use this code as the basis to complete the prompt.
The picture is the prompt, and the code is attached below. We are expected to use this code as the basis to complete the prompt.
import java.util.Scanner;
public class RightTriangle {
public static void main(String[] args) { // Do not edit this method Scanner keyboard = new Scanner(System.in); int firstSide = keyboard.nextInt(); int secondSide = keyboard.nextInt(); int thirdSide = keyboard.nextInt(); System.out.println(isRightTriangle(firstSide, secondSide, thirdSide)); keyboard.close(); } public static boolean isRightTriangle(int first, int second, int third) { // Your code goes here return maxSide; }
}
22.3 Right Triangle Suppose that the integers x, y, and z are the side lengths of a triangle. Write a method that returns true if the triangle is a right triangle and false otherwise. (You may assume that x, y, and z are positive.)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
