#include<stdio.h> int main() { int a, b, c; scanf("%d %d %d", &a, &b, &c); //现学现用,怎么求三个数中的最大值,5行搞定 int max = a; if(b > max) max =&...