海伦公式求三角形面积

#include "stdio.h"   #include <math.h>io int main() {     int a, b, c,s,Ar;     printf("请输入三边长:");      //求三角形面积,假设这个三角造成立         scanf_s("%d\n%d\n%d", &a, &b, &c);         s = (a + b + c) / 2;    //
相关文章
相关标签/搜索