poj2109 Power of Cryptography
生活随笔
收集整理的這篇文章主要介紹了
poj2109 Power of Cryptography
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
2017-10-6
解答
不知道為什么float就compile error了,關于浮點數...代碼
#include <iostream> #include <cmath> using namespace std;double a,b;int main(){ while(cin>>a>>b){ cout<<pow(b,1.0/a)<<endl; } return 0; }總結
以上是生活随笔為你收集整理的poj2109 Power of Cryptography的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ThinkPHP5 相关知识重点笔记
- 下一篇: Linux下如何编译并运行C程序