第一条要求太膈应了。
(a) int chengji(int x,int y,int z); 或者 #define chengji(x,y,z) x*y*z (b) printf("请输入3个整数"); (c) int x,y,z; (d) scanf("%d %d %d",&x,&y,&z); (e) int result = x*y*z; (f) printf("The product is %d",result);