(adsbygoogle = window.adsbygoogle || []).push({});
(Sides of a Triangle)
Write a program that reads three nonzero values entered by the user and determines and prints whether they could represent the sides of a triangle. (USE ONLY IF NOT ELSE)
Make sure to create and set the three int values. Afterward, just follow one of the principles of a triangle. No side can be larger than the other 2 sides summed. Code wise just go through ifs for each combination.