#include <stdio.h>
#include <math.h>
int main ()
{
float r,h,v;
printf ("введите Радиус Высоту (через пробел)");
scanf ("%f %f",&r,&h);
V=3.14*r*r*h;
printf ("v=%f",v);
return 0;
}
#include <stdio.h>
#include <math.h>
int main ()
{
float r,h,v;
printf ("введите Радиус Высоту (через пробел)");
scanf ("%f %f",&r,&h);
V=3.14*r*r*h;
printf ("v=%f",v);
return 0;
}