这代码哪错了,求解
#include<stdio.h>#include<stdlib.h>
int main()
{
float length,width,height;
float ans;
printf("请输入长方体的长度,宽度,高度:");
scanf("%f%f%f",&length,&width,&height);
ans=length*width*height/*体积计算公式*/
printf("\n长方体的体积:%6.1f\n",ans);/*错误*/
printf("-------------------------------------------\n");
system("pause");
return 0;
}
编译之后第六句显示错误,我表示看不出来,求解