//Pseudo Code // 1. Define variables for radius and height of a cylinder. // 2. Ask user for input of radius and height. // 3. Calculate volume of a cylinder with these perameters and print #include #include using namespace std; int main() { float radius = 0; float height = 0; double volume = 0; cout << "Please enter the radius: "; cin >> radius; cout << "Please enter the height: "; cin >> height; volume = radius * radius * height * 3.14159; cout << "The volume of the given cylinder is: " << volume << " units cubed.\n"; return 0; }