C|求最大公约数的伪代码
If y is equal to 0, then gcd(x, y) is x;
otherwise,gcd(x,y) is gcd(y,x % y), where % is the modulus operator.
【C|求最大公约数的伪代码】代码:
#include using namespace std;
int gcd(int x, int y)
{
if(y == 0)
return x;
else
return gcd(y,x%y);
}
int main()
{
cout << gcd(8,4) << endl;
return 0;
}
推荐阅读
- 热闹中的孤独
- JAVA(抽象类与接口的区别&重载与重写&内存泄漏)
- 放屁有这三个特征的,请注意啦!这说明你的身体毒素太多
- 一个人的旅行,三亚
- 布丽吉特,人生绝对的赢家
- 慢慢的美丽
- 尽力
- 一个小故事,我的思考。
- 家乡的那条小河
- 《真与假的困惑》???|《真与假的困惑》??? ——致良知是一种伟大的力量