Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
204 | Benson | x的n次方 | C++ | Wrong Answer | 0 MS | 276 KB | 189 | 2022-07-22 09:35:32 |
#include<iostream> #include<cstring> #include<cstdio> #include<cmath> using namespace std; int main(){ double x; int n; cin>>x>>n; cout<<pow(x,n); return 0; }
------Input------
50 10
------Answer-----
97656250000000000
------Your output-----
9.76562e+16