题目:In a triangle, the sum of any two sides must be greater than the third side. Write a program to input three numbers and determine if they form a valid triangle. 在三角形中,任意两边之和一定要大于第三边。写一个程序判断输入的三个数是否能构成三角形 (提示:构成三角形的条件时两边之和大于第三边。因此需要有三个大于表达式通过&&组合来表达该条件)
答案:评论后可见此内容