#include #include using namespace std; int main() { float height; float radius; float pi = 3.141592654; Float volume; cout << "******************************************************************"; cout << "\n This program will tell you the volume of a cylinder \n"; cout << "******************************************************************\n"; cout << "\n\tPlease enter the radius of the cylinder (cm): "; cin >> radius; cout << "\n\tPlease enter the height of the cylinder (cm): "; cin >> height; volume = pi * radius * height; cout << "\n\n\tThe volume of this cylinder is: " << volume << " cm^3\n\n\n "; return 0; }