| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 135034 | 王金檐 | x的n次方 | C++ | Wrong Answer | 0 MS | 268 KB | 215 | 2025-11-02 11:36:56 |
#include<bits/stdc++.h> using namespace std; long long a; int mi(int a,int b){ int i=1; if(i<b){ mi(a*a,i); }else{ return a; } } int main(){ int x,n; cin>>x>>n; cout<<mi(x,n); return 0; }
------Input------
10 7
------Answer-----
10000000
------Your output-----
100