Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Calculate the volume of a Cone

C++ Basic: Exercise-45 with Solution

Write a program in C++ to calculate the volume of a Cone.

Sample Solution:

C++ Code :

#include <iostream>
#include <string>
using namespace std;
int main ()
{
const float pi = 3.14159;
float R, H, V;
cout << "Input Cone's radius: ";
cin >> R;
cout << "Input Cone's height: ";
cin >> H;
// Cone's volume.
V = (1.0/3.0)*pi*(R*R)*H;
cout << "The volume of the cone is: " << V ;
return 0;
}

Sample Input: 5 3

Sample Output:

Input Cone's radius: Input Cone's height: The volume of the cone is: 78.5397

Flowchart:

Flowchart: Calculate the volume of a Cone

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a language program to get the volume of a sphere with radius 6.
Next: Write a program in C++ to calculate the volume of a cylinder.

What is the difficulty level of this exercise?