摘要: 问题001-1:请对输入三个整数a,b,c,判断能否以它们为三个边长构成三角形。若能,输出YES和面积,否则输出NO a = float(input())b = float(input())c = float(input()) if a > 0 and b > 0 and c > 0: #判断边长是 阅读全文
posted @ 2018-08-03 11:14 郭应文 阅读(527) 评论(0) 推荐(0) 编辑