POJ2109
类型 长度 (bit) 有效数字 绝对值范围
float 32 6~7 10^(-37) ~ 10^38
double 64 15~16 10^(-307) ~10^308
long double 128 18~19 10^(-4931) ~ 10 ^ 4932
Problem: 2109 | User: qq1203456195 | |
Memory: 280K | Time: 0MS | |
Language: C++ | Result: Accepted |
#include <iostream> #include <math.h> using namespace std; int main() { double n,p; while (cin>>n>>p) cout<<pow(p,1.0/n)<<endl; return 1; }
找我内推: 字节跳动各种岗位
作者:
ZH奶酪(张贺)
邮箱:
cheesezh@qq.com
出处:
http://www.cnblogs.com/CheeseZH/
*
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。