| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 133330 | 李明秦 | x的n次方 | C++ | Wrong Answer | 1 MS | 268 KB | 204 | 2025-10-18 14:55:31 |
#include<bits/stdc++.h> using namespace std; int r(int x,int n){ if(n==0){ return 1; }else{ return r(x,n-1)*x; } } int main() { int a,b; cin>>a>>b; cout<<r(a,b); return 0; }
------Input------
-2 49
------Answer-----
-562949953421312
------Your output-----
0