用C++编写寻找平行四边形面积的程序
在这个问题中,我们被给定两个值,表示平行四边形的底边和高。我们的任务是用C++创建一个程序来查找平行四边形的面积。
平行四边形是一个四边形,其中相对的边相等且相互平行。
让我们举个例子来理解这个问题,
输入
B = 20, H = 15
输出
300
解释
平行四边形的面积=底边*高=20*15=300
解决方案途径
为了解决问题,我们将使用平行四边形面积的几何公式,
Area = base * height.
为了说明我们解决方案的工作原理的程序,
例子
#include <iostream> using namespace std; float calcParallelogramArea(float B, float H){ return (B * H); } int main() { float B = 20, H = 15; cout<<"The area of parallelogram with base "<<B<<" and height "<<H<<" is "<<calcParallelogramArea(B, H); return 0; }
输出
The area of parallelogram with base 20 and height 15 is 300
广告