Computer >> Máy Tính >  >> Lập trình >> C ++

Chương trình tính toán khối lượng của Ellipsoid trong C ++

Với r1, r2 và r3, nhiệm vụ là tìm thể tích của ellipsoid. Một ellipsoid là một bề mặt tứ giác, một bề mặt có thể được định nghĩa là tập 0 của một đa thức bậc hai trong ba biến số. Trong số các bề mặt tứ giác, một ellipsoid được đặc trưng bởi một trong hai đặc tính sau.

Công thức dùng để tính thể tích của ellipsoid

Volume of Ellipsoid : (4/3) * pi * r1 * r2 * r3

Ví dụ

Input-: r1 = 6.3, r2 = 43.4, r3 = 3.7
Output-: volume of ellipsoid is : 4224.87

Thuật toán

Start
Step 1 -> define macro as
   #define pi 3.14
Step 2 -> Declare function to calculate Volume of ellipsoid
   float volume(float r1, float r2, float r3)
      return 1.33 * pi * r1 * r2 * r3
Step 3 -> In main()
   Declare variable as float r1 = 6.3, r2 = 43.4, r3 = 3.7
   Volume(r1, r2, r3)
Stop

Ví dụ

#include <bits/stdc++.h>
#define pi 3.14
using namespace std;
// Function to find the volume of ellipsoid
float volume(float r1, float r2, float r3){
   return 1.33 * pi * r1 * r2 * r3;
}
int main(){
   float r1 = 6.3, r2 = 43.4, r3 = 3.7;
   cout << "volume of ellipsoid is : " << volume(r1, r2, r3);
   return 0;
}

Đầu ra

volume of ellipsoid is : 4224.87