编写程序输入三角形三边a.b.c 判断abc能否构成三角形

问题描述:

编写程序输入三角形三边a.b.c 判断abc能否构成三角形

return false; if (a+b>c && a+c>b && b+a>c && b+c>a){if (a==b && a==c){cout