घनाभ क्या है?
घनाभ एक त्रि-आयामी वस्तु है जिसमें आयत आकार के छह फलक होते हैं जिसका अर्थ है कि इसकी अलग-अलग लंबाई और चौड़ाई की भुजाएँ हैं। घन और घनाभ के बीच का अंतर यह है कि एक घन की लंबाई, ऊंचाई और चौड़ाई समान होती है जबकि घनाभ में ये तीनों समान नहीं होते हैं
घनाभ के गुण हैं -
- छह चेहरे
- 12 किनारे
- 8 कोने
घन का चित्र नीचे दिया गया है
समस्या
लंबाई, चौड़ाई और आयतन को देखते हुए, कार्य एक घनाभ का कुल सतह क्षेत्र और आयतन ज्ञात करना है जहां सतह क्षेत्र चेहरों द्वारा कब्जा किया गया स्थान है और आयतन वह स्थान है जिसमें एक आकृति शामिल हो सकती है।
घनाभ के पृष्ठीय क्षेत्रफल और आयतन की गणना करने के लिए एक सूत्र है
सतह क्षेत्र =2(|*w + w * h + |*h )
आयतन =एल* डब्ल्यू * एच
उदाहरण
Input-: L=3 H=2 W=3 Output-: Volume of cuboid is: 18 Total Surface Area of cuboid is: 42
एल्गोरिदम
Start Step 1 -> declare function to find volume of cuboid double volume(double l, double h, double w) return (l*h*w) Step 2 -> declare function to find area of cuboid double surface_area(double l, double h, double w) return (2 * l * w + 2 * w * h + 2 * l * h) Step 3 -> In main() Declare variable double l=3, h=2 and w=3 Print volume(l,h,w) Print surface_area(l, h ,w) Stop
उदाहरण
#include <bits/stdc++.h> using namespace std; //function for volume of cuboid double volume(double l, double h, double w){ return (l * h * w); } //function for total surface area of cuboid double surface_area(double l, double h, double w){ return (2 * l * w + 2 * w * h + 2 * l * h); } int main(){ double l = 3; double h = 2; double w = 3; cout << "Volume of cuboid is: " <<volume(l, h, w) << endl; cout << "Total Surface Area of cuboid is: "<< surface_area(l, h, w); return 0; }
आउटपुट
Volume of cuboid is: 18 Total Surface Area of cuboid is: 42