| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 135152 | 林睿 | 求x的n次方 | C++ | Accepted | 1 MS | 272 KB | 210 | 2025-11-02 16:52:02 | 
#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>>n; cout<<normal(x,n); return 0; }