Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
103757 | 吴国懋 | x的n次方 | C++ | Wrong Answer | 1 MS | 272 KB | 202 | 2024-12-29 15:10:01 |
#include<bits/stdc++.h> using namespace std; int cf(int n,int x){ if(x==0){ return 1; }else{ return n*cf(n,x-1); } } int main(){ int a,b; cin>>a>>b; cout<<cf(a,b); return 0; }
------Input------
-2 49
------Answer-----
-562949953421312
------Your output-----
0