Example02.java 238 字节
Newer Older
J
jackfrued 已提交
1 2 3 4 5 6 7 8 9 10 11 12
package org.mobiletrain;

public class Example02 {

    public static void main(String[] args) {
        int total = 0;
        for (int i = 1; i <= 100; ++i) {
            total += i;
        }
        System.out.println(total);
    }
}