public class MultiFor {
	public static void main(String[] args){
		int total =0;
		for (int i=1; i<=100; i++){
			total = total +i;
			
			if(i% 10 ==0){
				System.out.println("1부터"+i+"까지의 합계는"+total);
			}
			
		}
	}

}



'Java > 2012.04 강좌' 카테고리의 다른 글

4일차 for문을 이용한 구구단  (0) 2012.04.06
4일차 2단 구구단 출력  (0) 2012.04.06
4일차 while 문 연습  (0) 2012.04.06
4일차 for 문 연습  (0) 2012.04.06
4일차  (0) 2012.04.06

+ Recent posts