当前位置: 首页 > article >正文

c++ 程序来计算三角形的面积(Program to find area of a triangle)

给定一个三角形的边,任务是求出该三角形的面积。

例如: 

输入:a = 5, b = 7, c = 8

输出:三角形面积为 17.320508

输入:a = 3, b = 4, c = 5

输出:三角形面积为 6.000000

方法:可以使用以下公式简单地计算 三角形的面积。

其中 a、b 和 c 是三角形边长,  
s = (a+b+c)/2 

下面是上述方法的实现:

// C++ Program to find the area  
// of triangle  
#include <bits/stdc++.h> 
using namespace std; 
  
float findArea(float a, float b, float c)  
{  
    // Length of sides must be positive  
    // and sum of any two sides  
    // must be smaller than third side.  
    if (a < 0 || b < 0 || c < 0 ||  
       (a + b <= c) || a + c <= b ||  
                       b + c <= a)  
    {  
        cout << "Not a valid triangle";  
        exit(0);  
    }  
    float s = (a + b + c) / 2;  
    return sqrt(s * (s - a) *  
                    (s - b) * (s - c));  
}  
  
// Driver Code 
int main()  
{  
    float a = 3.0;  
    float b = 4.0;  
    float c = 5.0;  
  
    cout << "Area is " << findArea(a, b, c);  
    return 0;  
}  
  
// This code is contributed  
// by rathbhupendra 

输出

面积为 6

时间复杂度: O(log 2 n)

辅助空间: O(1),因为没有占用额外空间。

给定一个三角形顶点的坐标,任务是找到该三角形的面积。

方法:如果给定三个角的坐标,我们可以对下面的区域  应用鞋带公式。

// C++ program to evaluate area of a polygon using 
// shoelace formula 
#include <bits/stdc++.h> 
using namespace std; 
   
// (X[i], Y[i]) are coordinates of i'th point. 
double polygonArea(double X[], double Y[], int n) 

    // Initialize area 
    double area = 0.0; 
   
    // Calculate value of shoelace formula 
    int j = n - 1; 
    for (int i = 0; i < n; i++) 
    { 
        area += (X[j] + X[i]) * (Y[j] - Y[i]); 
        j = i;  // j is previous vertex to i 
    } 
   
    // Return absolute value 
    return abs(area / 2.0); 

   
// Driver program to test above function 
int main() 

    double X[] = {0, 2, 4}; 
    double Y[] = {1, 3, 7}; 
   
    int n = sizeof(X)/sizeof(X[0]); 
   
    cout << polygonArea(X, Y, n); 

输出
2

时间复杂度: O(n)

辅助空间: O(1)


http://www.kler.cn/a/415656.html

相关文章:

  • 多线程+线程池
  • 计算机的错误计算(一百六十九)
  • MySQL5.6升级MySQL5.7
  • python代码示例(读取excel文件,自动播放音频)
  • 【iOS】知乎日报总结
  • Ubuntu 18.04 中安装 RDKit(针对 Python 2.7)
  • 【Unity-父节点】
  • 点云3DHarris角点检测算法推导
  • TsingtaoAI具身智能高校实训方案通过华为昇腾技术认证
  • C++开源游戏项目OpenTTD(运输大亨)源码的编译和运行
  • 基于Redis内核的热key统计实现方案|得物技术
  • 彻底理解quadtree四叉树、Octree八叉树 —— 点云的空间划分的标准做法
  • Vue.js 指令详解:v-bind, v-html, v-once, v-on, v-if, v-else-if, v-else 和 v-model
  • 音视频入门基础:MPEG2-TS专题(9)——FFmpeg源码中,解码TS Header的实现
  • wareshark分析mysql协议的数据包
  • 【Jenkins】docker 部署 Jenkins 踩坑笔记
  • 微信小程序:实现定时拍照与自动上传功能攻略——静音版
  • 【C++】深入探讨基础输入输出及类型转换问题
  • cesium 3Dtiles变量
  • 2024年陕西科技大学数据结构程序填空题+预测
  • 精准零售驱动下的中国零售业变革与“开源 2+1 链动小程序”应用探究
  • 网络爬虫的原理
  • 从语法、功能、社区和使用场景来比较 Sass 和 LESS
  • AI一键生成3D动画:腾讯最新方案,为小程序带来革命性变化
  • AI开发:逻辑回归 - 实战演练- 垃圾邮件的识别(二)
  • 爬虫技术:探索网络世界的钥匙