题目:
f(x,y)f(x,y)f(x,y)={f(y,x%y),(y>0)x,(y=0)\left\{\begin{matrix} & f(y,x\% y),(y>0) \\ & x,(y=0) \end{matrix}\right.{f(y,x%y),(y>0)x,(y=0)
输入:第一行一个整数t(t ≤100\leq 100≤100)然后有t行,每行两个整数x(1≤x≤1091 \leq x \leq 10^91≤x≤109),y(1≤x≤1091 \leq x \leq 10^91≤x≤109).
输出x,y的最大公约数
样例输入
1
6 8
样例输出
2
代码:
不解释了,能用递归解决最大公约数问题。欧几里得辗转相除法,数论问题。
#include<iostream>
#include<algorithm>
using namespace std;
int f(int x,int y){if(y==0) return x;else return f(y,x%y);
}
int main(){int t,x,y;cin>>t;while(t--){cin>>x>>y;cout<<f(x,y)<<endl;}
}