Computer Science, asked by gitasubashini, 4 months ago

Rewrite the following using if – else instead of ternary operator.
String s;
s= (a+b+c==180) ? “Triangle possible” : “Triangle not possible”

Answers

Answered by AnindaBasu
1

Answer:

String s;

if (a+b+c==180)

s= “Triangle possible”

else

s=“Triangle not possible”

Answered by srikoti
0

Answer:

........................,.............

Similar questions
Math, 10 months ago
Math, 10 months ago