public static void main(String[] args) {
**int i = 0;**
while**(i<10){**
System.out.printlin("ohh"+i);
**i++**
}
}
for문을 활용 시에 아래 같은 코드가 된다.
public static void main(String[] args) {
for(초기화int i = 0; 종료조건i<10; 반복실행i++){
//반복적으로 실행될 구문
System.out.println("ohh"+i);
}
}
public static void main(String[] args) {
for(int i = 5; i < 20; i=i+2){
//반복적으로 실행될 구문
System.out.println("ohh"+i);
}
}
반복문 사용할 때 가변적인 것과 고정적인 것을 구분하고 설계하는 것이 중요하다.
(예 : 변수 할당)
while(조건문){ } 활용
public static void main(String[] args) {
for(int i =0; i < 10; i++){
if (i==5)
break(해당 조건에 멈춤); or continue(해당 조건 건너뛰기);
System.out.printl("Hi"+i);
}
}
public class BreakDemo {
public static void main(String[] args) {
for(int i =0; i < 10; i++){
for(int j=0; j < 10; j++){
System.out.printl(i+""+j);
}
}
}
}