C语言 求最大公约数 欧几里得算法 #include int main() { int r,n,m,temp; printf("请输入两个整数"); scanf("%d %d",&n,&m);