#include #define PI = 3.14; using namespace std; int main() { int volume = 0; int Radius = 0; int Height = 0; cout << "Enter Radius"; cin >> Radius; cout << "Enter Height"; cin >> Height; volume = 3.14 * Radius * Height; cout << "The volume of the cylinder is approximately" << volume << std::endl; return 0; }