如何使用while循环实现100之内偶数输出,并求和?

package cn.kgc;

public class Test {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		/*1.初始化条件
		 *2.循环条件
		 *3.迭代条件
		 *4.循环体
		 *
		 *①
		 *while(②){
		 *   ④
		 *   ③
		 *
		 *}
		 * 
		 * */
		/*int count=1;
		while(count<=50){
			System.out.println("count");
			//count++;
			
		}*/
		
		//100以内的偶数的输出,以及和
		int i=1;
		int sum=0;
		while(i<=100){
			if(i%2==0){
				System.out.println(i);
				sum=sum+i;
				//sum+=i;
			}
			
			i++;
			
		}
		
		System.out.println(sum);
		System.out.println(i);
	}

}
2
4
6
8
10
12
14
16
18
20
22
24
26
28
30
32
34
36
38
40
42
44
46
48
50
52
54
56
58
60
62
64
66
68
70
72
74
76
78
80
82
84
86
88
90
92
94
96
98
100
2550
101

你可能感兴趣的:(课堂,流程控制)