给定高度截头体 , 上半径 & 基半径 .任务是找到可以内接的最大正圆柱体的体积。
例子:
Input : r = 5, R = 10, h = 4
Output : 314
Input : r = 7, R = 11, h = 6
Output : 923.16
方法:
让:
- 圆柱体的高度 = h1
- 圆柱半径 = r1
从图中可以清楚地看出:
- 圆柱体的高度 = 截锥体的高度
- 圆柱的半径 = 截锥体的 Rop 半径
所以,
h1 = h
r1 = r
下面是上述方法的实现:
C++
// C++ Program to find the biggest right circular cylinder
// that can be fit within a frustum
#include
using namespace std;
// Function to find the biggest right circular cylinder
float cyl(float r, float R, float h)
{
// radii and height cannot be negative
if (h < 0 && r < 0 && R < 0)
return -1;
// radius of right circular cylinder
float r1 = r;
// height of right circular cylinder
float h1 = h;
// volume of right circular cylinder
float V = 3.14 * pow(r1, 2) * h1;
return V;
}
// Driver code
int main()
{
float r = 7, R = 11, h = 6;
cout << cyl(r, R, h) << endl;
return 0;
}
Java
// Java Program to find the biggest right circular cylinder
// that can be fit within a frustum
import java.io.*;
class GFG {
// Function to find the biggest right circular cylinder
static float cyl(float r, float R, float h)
{
// radii and height cannot be negative
if (h < 0 && r < 0 && R < 0)
return -1;
// radius of right circular cylinder
float r1 = r;
// height of right circular cylinder
float h1 = h;
// volume of right circular cylinder
float V = (float)(3.14 * Math.pow(r1, 2) * h1);
return V;
}
// Driver code
public static void main (String[] args) {
float r = 7, R = 11, h = 6;
System.out.print( cyl(r, R, h));
}
}
// This code is contributed by anuj_67..
Python3
# Python3 Program to find the biggest right circular cylinder
# that can be fit within a frustum
# Function to find the biggest right circular cylinder
def cyl(r, R, h) :
# radii and height cannot be negative
if (h < 0 and r < 0 and R < 0) :
return -1
# radius of right circular cylinder
r1 = r
# height of right circular cylinder
h1 = h
# volume of right circular cylinder
V = 3.14 * pow(r1, 2) * h1
return round(V,2)
# Driver code
if __name__ == "__main__" :
r, R, h = 7, 11, 6
print(cyl(r, R, h))
# This code is contributed by Ryuga
C#
// C# Program to find the biggest right circular cylinder
// that can be fit within a frustum
using System;
class GFG {
// Function to find the biggest right circular cylinder
static float cyl(float r, float R, float h)
{
// radii and height cannot be negative
if (h < 0 && r < 0 && R < 0)
return -1;
// radius of right circular cylinder
float r1 = r;
// height of right circular cylinder
float h1 = h;
// volume of right circular cylinder
float V = (float)(3.14 * Math.Pow(r1, 2) * h1);
return V;
}
// Driver code
public static void Main () {
float r = 7, R = 11, h = 6;
Console.WriteLine( cyl(r, R, h));
}
}
// This code is contributed by anuj_67..
PHP
Javascript
输出:
923.16
如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程和学生竞争性编程现场课程。