1 Star 0 Fork 68

林晓洁/open_source enablement

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
c_demo1.c 561 Bytes
一键复制 编辑 原始数据 按行查看 历史
quanag100 提交于 2024-09-26 18:01 . first commit
#include <stdio.h>
#include <math.h>
// 判断是否为三角形
void isTriangle(double a, double b, double c)
{
if (a + b > c && a + c > b && b + c > a)
{
return 1;
}
return 0;
}
// 求三角形的面积
double areaOfTriangle(double a, double b, double c)
{
double p = (a + b + c) / 2;
return sqrt(p * (p - a) * (p - b) * (p - c));
}
int main(void)
{
double a, b, c;
scanf("%lf %lf %lf", &a, &b, &c);
if (isTriangle(a, b, c))
{
printf("s = %f\n", areaOfTriangle(a, b, c));
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lin-xiaojie00/open_source-enablement.git
[email protected]:lin-xiaojie00/open_source-enablement.git
lin-xiaojie00
open_source-enablement
open_source enablement
master

搜索帮助