【c/c++】调用函数求长方体的体积

#include
//输入长方体的长、宽、高。调用函数求长方体的体积
int main()
{
	float vol(float z,float x,float c);
	float z,x,c;
	printf("please input 长方体的长、宽、高:");
	scanf("%f%f%f",&z,&x,&c);
	printf("长方体的体积为%.2f",vol(z,x,c));
	return 0; 
} 

float vol(float z,float x,float c){
	return z*x*c;
} 

你可能感兴趣的:(c/c++)