码迷,mamicode.com
首页 > 其他好文 > 详细

9.已知三边计算三角形的面积公式

时间:2019-01-11 20:14:55      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:计算   can   nbsp   三角形   style   return   span   oat   scan   

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 #include <math.h>
 4 
 5 int main()
 6 {
 7     float  a,b,c,s,area;
 8     scanf("%f%f%f",&a,&b,&c);
 9     s = (a+b+c)/2;                //已知三边计算三角形面积公式
10     area = sqrt(s*(s-a)*(s-b)*(s-c));  
11     printf("%f",area);
12     return 0;
13 }

 

9.已知三边计算三角形的面积公式

标签:计算   can   nbsp   三角形   style   return   span   oat   scan   

原文地址:https://www.cnblogs.com/spore/p/10256821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!