728x90
1 패키지 명
3 클래스 선언
4 메인 메소드
5 정수형 변수 i, tot 0으로 초기화 시켜주었음
8 while문 i가 10보다 작으면 (true) 조건식 반복 10보다 작을 때 까지 반복 즉 9까지 int형에서
9 i에 i+1 대입
10 tot 는 tot + i
i = 9+1
tot = 1 + 1+2 + 1+2+3 + 1+2+3+4 - - -
package t4_3;
public class Test3 {
public static void main(String[] args) {
int i=0, tot=0;
while(i<10) {
i = i+1;
tot = tot + i;
}
System.out.println("i="+i+" , tot="+tot);
}
}
#하얀배터리 #IT #정보보안 #윈도우 #window #프로그래밍 #programming #html #java #C #javascript #database #jQuery #서버 #보안 #리눅스
728x90
'Web > Spring , Springboot , JPA' 카테고리의 다른 글
JAVA - JSP로 기본 틀 만들기 (0) | 2019.11.17 |
---|---|
[JAVA기초] #11.3 - 반복문 do-while, break , continue (0) | 2019.10.22 |
[JAVA기초] #11.1 - 반복문 for [홀수의 합 , 짝수의 합] (0) | 2019.10.22 |
[JAVA기초] #10.1 난수 발생 [random] (0) | 2019.10.22 |
[JAVA기초] #10 - 중첩 if문 , switch case문 (0) | 2019.10.22 |