写一段程序,求1+2*2+3*3+n*n的值 Java

时间:2014-05-09 02:03:25   收藏:0   阅读:238
public static void main(String[] args) {
        // 1*1+2*2+3*3+n*n
        int n = 40;
        // 1 5 14 30 55
        // 1 2 3 4 5

        // 方式一
        int c = 0;
        for (int i = 1; i <= n; i++) {
            int c1 = count(i);
            c = (c1 + i * i);
        }
        System.out.println(c);

        // 方式二
        c = 0;
        c = n * (n + 1) * (2 * n + 1) / 6;
        System.out.println(c);
    }

    public static int count(int n) {
        int c = 0;
        for (int i = 1; i < n; i++) {
            c += i * i;
        }
        return c;
    }

写一段程序,求1+2*2+3*3+n*n的值 Java,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!