#include int main(void) { double x,y,z; puts("縦、横、奥行きの値を入れてください。"); scanf("%lf%lf%lf,&x,&y,&z); printf("この直方体の体積は%fです。",x*y*z/1000000); return 0; }