SP27561 GDCOFTI - Greatest Common Divisor Of Three Integers

SP27561 GDCOFTI - Greatest Common Divisor Of Three Integers,第1张

#include
using namespace std;
#define ll long long
//#define LOCAL
int main(){
#ifdef LOCAL
    freopen("data.in","r",stdin);
    freopen("data.out","w",stdout);
#endif // LOCAL
    ll a,b,c;
    cin>>a>>b>>c;
    cout<<__gcd(__gcd(a,b),c);
}

C++ 自带__gcd

下面是手写gcd

#define ll long long 
ll gcd(ll a,ll b){
    return !b ? a : gcd(b,a%b);
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/567414.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-09
下一篇 2022-04-09

发表评论

登录后才能评论

评论列表(0条)

保存