C++ 计算并输出三角形的面积
生活随笔
收集整理的這篇文章主要介紹了
C++ 计算并输出三角形的面积
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
題目描述
輸入三角形的三條邊長(zhǎng)a、b、c,計(jì)算并輸出三角形的面積。要求判斷輸入的三條邊a、b、c三個(gè)數(shù)是否能構(gòu)成三角,如果不能構(gòu)成三角形,則輸出提示信息告訴用戶。
輸入描述
輸入三個(gè)數(shù)
輸出描述
輸出見樣例
輸入樣例
3.5 4.6 5.7 1 2 3輸出樣例
area=8.047 線段1.00,2.00,3.00不能構(gòu)成三角形 #include <iostream> #include <cmath> #include <iomanip>using namespace std;int main(){float a, b, c; double s, area;cin >> a >> b >> c;if (a + b <= c){cout << "線段" << fixed << setprecision(2) << a << "," << fixed << setprecision(2) << b << "," << fixed << setprecision(2) << c << "不能構(gòu)成三角形"<< endl;}else if (a + c <= b){cout << "線段" << fixed << setprecision(2) << a << "," << fixed << setprecision(2) << b << "," << fixed << setprecision(2) << c << "不能構(gòu)成三角形"<< endl;}else if (b + c <= a){cout << "線段" << fixed << setprecision(2) << a << "," << fixed << setprecision(2) << b << "," << fixed << setprecision(2) << c << "不能構(gòu)成三角形"<< endl;}else {s = (a + b + c) * 0.5;area = sqrt(s * (s - a) * (s - b) * (s - c));cout << "area="<< fixed << setprecision(3) << area << endl;}}總結(jié)
以上是生活随笔為你收集整理的C++ 计算并输出三角形的面积的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: C++ 字符ASC排序
- 下一篇: C++ 奇数的乘积