Question: java 1. Create a method which accepts three integer inputs and then determine if they can form a valid triangle: - If no return It
1. Create a method which accepts three integer inputs and then determine if they can form a valid triangle: - If no return "It is not a valid triangle" - If yes: check if 1. it is an acute, return "It is an acute triangle" 2. it is an obtuse, return "It is an obtuse triangle" 3. it is a right, return "It is a right triangle" 2. In the main method: Accept three positive integers (one by one) from keyboard . Call the function you created in step 1 Print the result from the call Submit the following items to Blackboard: Your Java code (java) Screenshots of a successful runs Sample Run 1: Type in the first positive integer: 1 Type in the second positive integer: 2 Type in the third positive integer: 3 This is Not a valid Triangle! Sample Run 2: Type in the first positive integer: 3 Type in the second positive integer: 4 Type in the third positive integer: 5 This is a Valid Triangle! and it is a right triangle! Sample Run 3: Type in the first positive integer: 3 Type in the second positive integer: 3 Type in the third positive integer: 3 This is a Valid Triangle! and it is an acute triangle! Sample Run 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
