Program to find the Volume of a Triangular Prism

Given the length, width, and height of a triangular prism, the task is to find the volume of the triangular prism.
Examples:
Input: l = 18, b = 12, h = 9 Output: Volume of triangular prism: 972 Input: l = 10, b = 8, h = 6 Output: Volume of triangular prism: 240
In mathematics, a triangular prism is a three-dimensional solid shape with two identical ends connected by equal parallel lines. The triangular prism contains 5 faces, 9 edges, and 6 vertices.
Formula to find the volume of triangular prism:
Volume = ( l * b * h ) / 2
C++
// CPP program to find the volume// of the triangular prism#include <bits/stdc++.h>using namespace std;// function to find the Volume// of triangular prismfloat findVolume(float l, float b, float h){ // formula to find Volume float volume = (l * b * h) / 2; return volume;}// Driver Codeint main(){ float l = 18, b = 12, h = 9; // function calling cout << "Volume of triangular prism: " << findVolume(l, b, h); return 0;} |
Java
// Java program to find the volume// of the triangular prismimport java.io.*;class GFG { // function to find the Volume // of triangular prism static float findVolume(float l, float b, float h) { // formula to find Volume float volume = (l * b * h) / 2; return volume; } // Driver code public static void main(String[] args) { float l = 18, b = 12, h = 9; // function calling System.out.println("Volume of triangular prism: " + findVolume(l, b, h)); }} |
Python3
# Python3 program to find the volume# of the triangular prism# function to find the Volume # of triangular prismdef findVolume(l, b, h) : # formula to find Volume return ((l * b * h) / 2)# Driver Codel = 18b = 12h = 9 # function callingprint("Volume of triangular prism: ", findVolume(l, b, h)) |
C#
// C# program to find the volume// of the triangular prismusing System;class GFG { // function to find the Volume // of triangular prism static float findVolume(float l, float b, float h) { // formula to find Volume float volume = (l * b * h) / 2; return volume; } // Driver code static public void Main() { float l = 18, b = 12, h = 9; // function calling Console.WriteLine("Volume of triangular prism: " + findVolume(l, b, h)); }} |
PHP
<?php// PHP program to find the volume// of the triangular prism// function to find the Volume // of triangular prismfunction findVolume($l, $b, $h){ // formula to find Volume $volume = ($l * $b * $h) / 2; return $volume;}// Driver Code$l = 18; $b = 12; $h = 9; // function callingecho "Volume of triangular prism: " . findVolume($l, $b, $h);?> |
Javascript
<script>// Javascript program to find the volume// of the triangular prism// function to find the Volume// of triangular prismfunction findVolume( l, b, h){ // formula to find Volume let volume = (l * b * h) / 2; return volume;}// Driver Code let l = 18, b = 12, h = 9; // function calling document.write( "Volume of triangular prism: " + findVolume(l, b, h)); // This code is contributed by todaysgaurav </script> |
Output:
Volume of triangular prism: 972
Time Complexity: O(1)
Auxiliary Space: O(1)
Feeling lost in the world of random DSA topics, wasting time without progress? It’s time for a change! Join our DSA course, where we’ll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 zambiatek!
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 zambiatek!




