2571. GCD and LCM

我太难了

偷鸡来了

include

using namespace std;

int main()
{
int n;
cin >> n;
for (int i = 0; i < n;i++){
int a, b;
cin >> a >> b;
cout << gcd(a, b) << ” ” << lcm(a, b) << endl;
}
return 0;
}

Lento_Ye

辗转相除法

你当前正在回复 博客/题目
存在问题!