# 附本人AC code:
```cpp
#include<bits/stdc++.h>
using namespace std;
unsigned long long akm(int a,int b)
{
if(a==0)return b+1;
if(b==0)return akm(a-1,1);
return akm(a-1,akm(a,b-1));
}
int main()
{
int m,n;
cin>>m>>n;
cout<<akm(m,n);
return 0;
}
```
还请各位多多指正,如有问题欢迎指出,杜绝抄袭
by shutan_hyc81010 @ 2023-08-22 15:29:58
**题目描述
阿克曼
(Ackmann) 函数
A(m,n)中,
m,n 定义域是非负整数
(m≤3,n≤10)**
# ~~注意读题~~
by Jarstick @ 2023-08-22 15:33:27
@[tai_mei](/user/923519) 我的理解是,作为一个函数,没有道理说有一部分整数有输出且合理,而另一部分没有,所以有疑惑,并不是数据范围的问题
by shutan_hyc81010 @ 2023-08-22 15:41:50
https://www.docin.com/p-2128722751.html 第21页
by hiYE_ame @ 2023-08-28 14:02:08
是不是版本问题,在我的电脑上可以正常运行
by dayday2012 @ 2023-08-29 16:42:55
@[hiYE_ame](/user/766454) tks
本贴结
by shutan_hyc81010 @ 2023-09-02 07:50:22