--- プログラム ---

BEGIN{
print lb(1,10000)*4
}
 
function lb(n,cn)
{
if(cn>0)
{
return 1/n-lb(n+2,cn-1)
}
}


--- 実行結果 ---

3.14149






戻る