似乎在C++內有個函式庫叫algorithm,
又其中有個函示叫做__gcd,
故得證
(所以這題也不用用到迴圈去寫輾轉相除啦!!!!
Python的gcd調用方法:
from math import gcd
似乎在C++內有個函式庫叫algorithm,
又其中有個函示叫做__gcd,
故得證
(所以這題也不用用到迴圈去寫輾轉相除啦!!!!
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
unsigned int a,b;
while(cin>>a>>b){
cout << endl << std::__gcd(a,b);
}
return 0;
}
似乎在C++內有個函式庫叫algorithm,
又其中有個函示叫做__gcd,
故得證
(所以這題也不用用到迴圈去寫輾轉相除啦!!!!
#include
#include
using namespace std;
int main()
{
unsigned int a,b;
while(cin>>a>>b){
cout << endl << std::__gcd(a,b);
}
return 0;
}
請問這是甚麼意思?看不太懂