Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
154 邓小龙 求x的n次方 C++ Accepted 0 MS 280 KB 172 2022-07-21 10:05:36

Tests(2/2):


Code:

# include<stdio.h> #include<iostream> #include<cmath> using namespace std; int main(){ double x; int n; cin>>x>>n; cout<<pow(x,n); return 0; }