网易:
最大公约数,最小公倍数,素数的求法忘了
最大公约数:
辗转相除法:
c++:
```
int main()
{
int a,b;
cin>>a>>b;
int temp;
int temp2;
while(a%b!=0){
if(b>=a){
temp = b;
b = a;
a = temp;
}
temp = a;
a = b;
b = temp % b;
if(b==0){
cout<<a<<endl;
return 0;
}
}
cout<<b<<endl;
return 0;
}
```
本地能通过,在线不能
网络的知识 报文 ip
流量漏斗?
网友评论