java循环练习:输出1+2+3....+100的和

1
2
3
4
5
6
7
8
9
10
11
12
13
14
package practiceGO;
/*
 * 2.输出1+2+3....+100的和
 */
public class Cto {
    public static void main(String[] args) {
        int result = 0;
        System.out.println("1+2+3+...+100的和为:");
        for(int i=1; i<=100; i++){
            result += i;
        }
        System.out.println(result);
    }
}

运行:

1
2
1+2+3+...+100的和为:
5050



本文转自yeleven 51CTO博客,原文链接:http://blog.51cto.com/11317783/1757250
上一篇:跟我一起学 第1课


下一篇:阿里云智能推荐应用业务场景介绍