Computer Science, asked by ibrahimzeya27, 5 months ago

x radius)
23. Input three angles of a triangle and display whether a triangle is
possible or not.​

Answers

Answered by priya7668
0

Answer:

I'm writing only main program with the help of java language...

System.out.print("Input three angles of triangle");

int a= Integer.parseInt(br.readline());

int b= Integer.parseInt(br.readline());

int c= Integer.parseInt(br.readline());

int v = a+b+c;

if(v= 180)

System.out.print("Triangle is possible");

else

System.out.print("Triangle is not possible");

HOPE IT WILL HELP!

Similar questions