Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
103008 | 孙睿阳 | x的n次方 | C++ | Wrong Answer | 1 MS | 268 KB | 149 | 2024-12-27 22:01:19 |
#include<bits/stdc++.h> using namespace std; int main(){ int x,n; cin>>x>>n; for(int i=1;i<=n;i++){ x=x*x; } cout<<x; return 0; }
------Input------
10 7
------Answer-----
10000000
------Your output-----
0