在洛谷上刷到一道题
里面用到了求最小公约数的方法。所以想着总结一下,了解一下求最小公约数的原理。
其实C++自带gcd函数,需要导入algorithm库
举例:
#include<iostream>
#include<algorithm>
using namespace std;
main()
{
cout<<
在洛谷上刷到一道题
里面用到了求最小公约数的方法。所以想着总结一下,了解一下求最小公约数的原理。
其实C++自带gcd函数,需要导入algorithm库
举例:
#include<iostream>
#include<algorithm>
using namespace std;
main()
{
cout<<