c how to program 习题2.4

发布于2020-03-07 811 热度

//c how to program 习题2.4
#include <stdio.h>
int main(void)
{
	int x, y, z;
	printf("请分别输入三个整数:");
	scanf("%d%d%d", &x,&y,&z);
	int result=x*y*z;
	printf("这三个整数的积是:%d\n", result);
}

记录工作,记录学习,分享知识,分享经验……