如题所述
#include <stdio.h>
int main()
{
float a,b,c;
scanf("%f%f%f",&a,&b,&c);
printf("%f\n",a*b*c);
return 0;
}