#include #include main() { float x,y,z,w; printf("Input x :"); scanf("%f",&x); printf("\nInput y :"); scanf("%f",&y); printf("\nInput z :"); scanf("%f",&z); w=x*y*z; printf("\nResult : %.2f",w); printf("\n By Suthasinee Thongman NO.26"); }