| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 135150 | 林睿 | 求x的n次方 | C++ | Wrong Answer | 1 MS | 272 KB | 207 | 2025-11-02 16:50:47 | 
#include<bits/stdc++.h> using namespace std; int normal(int x,int n){ int a=1; for(int i=0;i<n;i++){ a=a*x; } return a; } int main(){ int x,n; cin>>x; cout<<normal(x,n); return 0; }
------Input------
2 10
------Answer-----
1024
------Your output-----
1