#include<stdio.h>
#define PI 3.14159
void main()
{
float r,h,v;
printf(“输入圆柱体的底面半径和高:”);
scanf("%f,%f",&r,&h);
v=PI*r*r*h;
printf("圆柱体的体积是%f\n",v);
}