Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
13958 | 海瑧 | 乘方计算 | C++ | Compile Error | 0 MS | 0 KB | 163 | 2023-04-07 22:19:18 |
#include<bits/stdc++.h> using namespase std; int main(){ int a,b,c=1; cin>>a>>b; for(int i=1;i<=a;i++){ c*=a; } cout<<c; return 0; }