Question: Consider the following program, and judge whether the three integer side lengths can form a triangle. This triangle can be general triangle, an isosceles triangle
int main() i Scanner input=new Scanner(System.in); int a,b,c; System.out printin("Please enter the length of the three sides of the triangle (CM): a=input.nextint(): b= input.nextint(i): c=input.nextint(): if (a+b=cabs(ac)>ababs(bc)>=a) 1 System out. printin("The three sides cannot form a triangle"): else t if (a=ba=cb=c) 1 if (a=b&&b=ac) 1 System.out.printin("Equilateral triangle"): 1 else t System.out. printin("Isosceles triangle"); 1 ) else 1 + System.out. printin("common triangle"); I return 0; J
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
