Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
7604 张育斌 求x的n次方 C++ Accepted 0 MS 268 KB 331 2025-05-05 10:49:50

Tests(2/2):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int x,y,z; cin>>x>>y; z=pow(x,y); cout<<z; return 0; }