목록조건 (2)
today_is
오늘의 목표 >> for 와 while 을 이용하여 조건에 따른 반복문을 수행해보자. 반복문이란? : 특정 조건에 따라, 코드를 반복하여 수행하는 것. 반복문이 없다면 입.출력하고 싶은 만큼 코드를 붙여 넣어주어야 하기 때문에 한계가 있다. public class Ex01 { public static void main(String[] args) { //반복문 없이 출력 System.out.println("1"); System.out.println("1"); System.out.println("1"); System.out.println("1"); //무한반복 (횟수 지정 X) int num = 0; while(num < 50) { num ++; System.out.println("while : " + nu..
오늘의 목표 >> 조건에 따라 다른 처리를 해야할 때가 있다. 조건을 걸 수 있는 if 와 switch 에 대해서 배워보자 ! Quiz 1 > 최소값 찾기 if 를 이용하여 간단한 조건을 판별한 후에 그에 맞는 결과 처리 해보기 public class Ex01 { public static void main(String[] args) { int n1 = 20, n2 = 10, n3 = 3; int min = n1; if (min > n2) min = n2; if (min > n3) min = n3; System.out.println("최소값 : " + min); System.out.println(); //2) 절대값 구하기 int num = -5, abso; if (num < 0) { abso = -num..