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) //兩邊之和大於第三邊 {
相關文章
相關標籤/搜索