编写一个函数,输入 n 为偶数时,调用函数求 1/2+1/4+...+1/n,当输入 n 为奇数时,调用函数 1/1+1/3+...+1/n

public class Test39 {
    public static void main(String[] args) 
    {
        Scanner s = new Scanner(System.in);
        System.out.print("请输入一个正整数 n= ");
        int n = s.nextInt();
        System.out.println("相应数列的和为:" + sum(n));
    }
    public static double sum(int n) 
    {
        double res = 0;
        if(n % 2 == 0) {
            for(int i=2; i<=n; i+=2) {
        res += (double)1 / i;
        }
        } else {
        for(int i=1; i<=n; i+=2) {
        res += (double)1 / i ;
        }
        }
        return res;
    }
}

你可能感兴趣的:(编写一个函数,输入 n 为偶数时,调用函数求 1/2+1/4+...+1/n,当输入 n 为奇数时,调用函数 1/1+1/3+...+1/n)