1 计算两个数最大值 最小值 乘积 2 最小公倍数是最大数的倍数,每次加上max,与min取余 #include <stdio.h> int main( ) { int a, b, i; int min, max, product; scanf("%d %d", &a, &b); //step 1 if(a <= b) { min = a; max = b; } else ...