Answer:
C++.
Step-by-step explanation:
#include <iostream>
#include <cmath>
using namespace std;
/////////////////////////////////////////////////////////
int main() {
double height, radius;
const double PI = 3.14159;
/////////////////////////////////////////////////////
cout<<"Enter the height of the cylinder: ";
cin>>height;
cout<<"Enter the radius of the base of the cylinder: ";
cin>>radius;
/////////////////////////////////////////////////////
cout<<endl;
printf("Surface area: %.2f", (2*PI*radius*height) + 2*PI*pow(radius, 2.0));
cout<<endl;
printf("Volume of the cylinder = %.2f", PI*pow(radius, 2.0)*height);
/////////////////////////////////////////////////////
return 0;
}