Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
84363 赵文浚 求x的n次方 C++ Accepted 1 MS 284 KB 124 2024-07-15 16:43:54

Tests(2/2):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<pow(a,b); return 0; }