--- プログラム ---

BEGIN{
print sqrt(eu(1,10000)*6)
}
 
function eu(n,cn)
{
if(cn>0)
{
return 1/(n*n)+eu(n+1,cn-1)
}
}


--- 実行結果 ---

3.1415






戻る