GCD与exGCDPublished on 2024-11-15Tags:ACM本文共25字,阅读需要约1分钟#inlcude<cstdio> int gcd(int a,int b){ return b?gcd(b,a%b):a; } int main(){ return 0; }