题目: 用辗转相除法求两个数的最大公约数 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h>int main() {int a, b,r;scanf("%d %d", &a, &b);while (……