Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
43561 | 马若兮 | 阿克曼(Ackmann)函数 | C++ | 解答错误 | 1 MS | 240 KB | 349 | 2024-03-16 20:23:09 |
#include<bits/stdc++.h> using namespace std; int A(int m,int n){ int sum=0; cout<<m<<" "<<n<<endl; if(m==0){ sum=n+1; } else if(m>0 && n==0){ sum=A(m-1,1); } else if(m>0 && n>0){ sum=A(m-1,A(m,n-1)); } return sum; } int main(){ int m=0; int n=0; cin>>m>>n; int a=A(m,n); cout<<a; return 0; }