c语言求三角形的面积及判断三角形类型

//================== //判断三角形的类型 //================== #include <stdio.h> #include <math.h> void judge(int a, int b, int c) { float s, area; if (a + b > c && b + c > a && a + c > b) //两边之和大于第三边 {
相关文章
相关标签/搜索