https://www.youtube.com/watch?v=S58LemCclek&t=431s
public class LoopApp {
public static void main(String[] args) {
System.out.println(1);
System.out.println("===while===");
int i = 0;
while(i < 3) {
System.out.println(2);
System.out.println(3);
i++;
//i = i + 1
}
System.out.println("===for===");
for(int j = 0; j < 3; j++) {
System.out.println(2);
System.out.println(3);
}
}
}
'생활코딩 > 생활코딩 Java' 카테고리의 다른 글
Java_method - 메소드의 기본 형식 (0) | 2021.10.12 |
---|---|
Java_제어문 - 종합응용 수업을 마치며 (0) | 2021.10.12 |
Java_제어문 - == vs equals (0) | 2021.10.12 |
Java_제어문 - 조건문 형식 (0) | 2021.10.12 |
Java_제어문 - Boolean Datatype (0) | 2021.10.12 |