[C++] Nested Radical Constant
生活随笔
收集整理的這篇文章主要介紹了
[C++] Nested Radical Constant
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
做高數助教被天煞的大一學生坑了,發現是個未解問題,沒有解析解。。
用C搞了下,就是這樣。。。
?
No closed-form expression is known for this constant (Finch 2003, p.?8; S.?Plouffe, pers. comm., Aug.?29, 2008).
?
/***************************************** *@: Nested Radical Constant 嵌套根式常數 *@: http://mathworld.wolfram.com/NestedRadicalConstant.html *****************************************/ #include "stdafx.h" #include <stdio.h> #include <math.h> void main(void){int N = 10;int idx = 0;double an = 0;double temp = 0;an = sqrt(double(N));for(idx =(N-1);idx >= 1; idx--){temp = idx + an;an = sqrt(temp); }printf("N=%d,an=%f \n",N,an);getchar(); }
轉載于:https://www.cnblogs.com/alimy/p/4074344.html
總結
以上是生活随笔為你收集整理的[C++] Nested Radical Constant的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 3. Dataset、transform
- 下一篇: ESP8266 wifi干扰、钓鱼实现