导航

2020年6月12日

摘要: 1 #include <stdio.h> 2 3 //判断是否是三角形 4 void judgeTriangle(float a,float b,float c) 5 { 6 //验证边与边的关系 7 if( (a + b > c) && (a + c > b) && (b + c > a) ) 8 阅读全文

posted @ 2020-06-12 21:21 ErgoCogito 阅读(582) 评论(0) 推荐(0) 编辑