2.2基本算法之递归和自调用函数_7592 求最大公约数问题

http://noi.openjudge.cn/ch0202/7592/
/*
2.2基本算法之递归和自调用函数_7592 求最大公约数问题
http://noi.openjudge.cn/ch0202/7592/
*/
#include
#include
#include
#include
#define N 1000010
using namespace std;
int calculate(int a,int b)
{
if(b==0)
return a;
return calculate(b,a%b);
}
int main()
{
int a,b;

cin>>a>>b;

if(a>b)
cout<

2.2基本算法之递归和自调用函数_7592 求最大公约数问题最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/14369.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>