再来一题
请编写函数,求三个整数的最小值。函数原型
int IntMin3(int x, int y, int z);
说明:参数 x、y 和 z 为三个整数,函数值为三个整数中的最小值。
裁判程序
#include <stdio.h>
int IntMin3(int x, int y, int z);
int main()
{
int a, b, c, d;
scanf("%d%d%d", &a, &b, &c);
d = IntMin3(a, b, c);
printf("%d\n", d);
return 0;
}
/* 你提交的代码将被嵌在这里 */
输入样例
15 36 -27
输出样例
-27