java题 :输入一个正整数repeat (0<repeat<10),做repeat次下列运算:

这是我的写的程序。。。但是根本不能运行。。。。求解答!!!... 这是我的写的程序。。。但是根本不能运行。。。。求解答!!! 展开
 我来答
aha_no_one
推荐于2016-01-21 · TA获得超过499个赞
知道小有建树答主
回答量:167
采纳率:0%
帮助的人:187万
展开全部
public class ComputePi {
    public static void main(String[] args) {
        System.out.println(getPiValue(10000));
        System.out.println(getPiValue(20000));
        System.out.println(getPiValue(100000));
    }

    private static double getPiValue(int count) {
        double result = -1.0;

        for (double i = 0.0; i <= count; i += 2) {
            result -= (1 / (2 * i - 1) - 1 / (2 * i + 1));
        }

        return result * 4;
    }
}

liuyang054
推荐于2016-01-22 · TA获得超过9093个赞
知道大有可为答主
回答量:5317
采纳率:78%
帮助的人:5296万
展开全部
public class Test {
    public static void main(String[] args) {
        double sum = 0, temp = 0;
        for(int i = 1; i <= 100000; i++){
            if(i % 2 != 0){
                temp = 1 * 1.0 / (2 * i - 1);
                sum += temp;
            }else{
                temp = 1 * 1.0 / (2 * i + 1);
                sum -= temp;
            }
        }
        System.out.println("π的值为: " + 4 * sum);
    }
}

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
最爱悲惨的孩子
2019-07-07
知道答主
回答量:16
采纳率:0%
帮助的人:1.3万
展开全部
double count = 0;
double u = 1;
for(double i = 1;i<=1000000000;++i) {
count += (1/(2*i-1))*u;

u*=-1;
}
System.out.println(4*count);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式