#include<stdio.h>
#include<math.h>
#define max(x,y) (x > y?x:y)
int main()
{
int x1 ,x2,x3 ,a ,b;
printf("請輸入3個整數數字(1~200):\n");
scanf("%d %d %d ", &x1,&x2,&x3);
printf("你輸入的 N=%3d, %3d, %3d\n", x1,x2,x3);
//=============================
printf("\n10. 最大的數字是:");
a=max(x1,x2);
b=max(a,x3);
printf("%3d\n",b);
return 0;
}
Stdin Inputs...
請輸入3個整數數字(1~200):
10. 最大的數字是: 45
沒有留言:
張貼留言