Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
96491 | 任斌 | x的n次方 | C++ | Wrong Answer | 1 MS | 272 KB | 208 | 2024-11-09 10:47:52 |
#include<bits/stdc++.h> using namespace std; int cf(int x,int n){ if(n==0) return 1; return x*cf(x,n-1); } int main() { long long n,x; cin>>x>>n; cout<<cf(x,n)<<endl; return 0; }
------Input------
-2 49
------Answer-----
-562949953421312
------Your output-----
0