[填空題] 以下程序計算1+1/3+1/5+…+1/(2N+1),直至1/(2N+1)小于0.00001,請在橫線處將程序補充完整。 public class
2021-07-20
[填空題] 以下程序計算1+1/3+1/5+…+1/(2N+1),直至1/(2N+1)小于0.00001,請在橫線處將程序補充完整。 public class Sun { public static void main(String args[]){int n=1;double term, sum=1.0;do{ n= 【12】 ; term=1.0/n; sum=sum+term;}while(term>=0.00001);System.out.pfintln(n);System.out.println(sum); } }
正確答案:2*n+1
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。