随笔分类 - 

上一页 1 ··· 11 12 13 14 15
摘要:Gcd 板子。 注意“同一直线”,除2即可 #include<iostream> using namespace std; int Gcd(int a,int b){ int c; while(a){ c=b%a; b=a; a=c; } return b; } int main(){ int n, 阅读全文
posted @ 2024-09-02 18:40 yzc_is_SadBee 阅读(12) 评论(0) 推荐(0)

上一页 1 ··· 11 12 13 14 15