#include <stdio.h> int main() { int a,b,c; scanf("%d%d%d",&a,&b,&c); int temp; if(a>b)//确保a的值小于b { temp = a; a = b; b = temp; } if(a>c)//确保a的值最小 { temp = a; a = c; c = temp; } if(b>c)//确保b的值小于c { temp = b; b = c; c = temp; } printf("The maximum number is : %...