1-10内的数字累加,输出和大于20的数字。

package ch06;

/**
 * Created by liwenj on 2017/7/18.
 */
public class test6 {
    public static void main(String[] args) {
        int total = 0;
        int i = 0;
        for (; i < 10; i++) {
            total = total + i;//取值在循环内,和放应该到循环里面
            if (total > 20) {
                System.out.println(i);
                break;
            }

        }

    }

}

 

posted @ 2017-07-18 11:02  斯丢皮德曼  阅读(356)  评论(0)    收藏  举报