#include
#include
#include
#define pi 3.14
using namespace std;
int main()
{
float a, b, S; // прямоугольник(данные)
float R, H, V; // цилиндр(данные)
//ввод данных//
cout << "Input the length of rectangle: "; cin >> a;
cout << "Input the width of rectangle: "; cin >> b;
cout << "Input the radius of cylinder: "; cin >> R;
cout << "Input the height of cylinder: "; cin >> H;
//ввод данных//
//вычисление//
S = a * b;
V = pi * pow(R,2)* H;
//вычисление//
//вывод в консоль//
cout
cout
//вывод в консоль//
system("pause"); // остановка консоли
return 0;
}