數論基礎代碼合集

歐幾里德 #include<iostream> using namespace std; int hcf(int a,int b)       {     int r=0;     while(b!=0)     {         r=a%b;         a=b;         b=r;     }     return(a); } lcd(int u,int v,int h) //u=
相關文章
相關標籤/搜索