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