자바의 조건문
조건문이란? 조건문(Conditional) 은 선언된 조건에 맞는 경우에만 실행되는 코드를 말한다. If 문 String today = "sat"; if (today == "sat") { System.out.println("In my home"); } Else if 문 String today = "sun"; String tomorrow = "mon"; if (today == "sun") { System.out.println("In my home"); } else if (tomorrow == "mon") { System.out.println("Go to work"); } Else 문 String weekend = "weekend"; String weekday = "weekday"; if (weekend =..
2024.01.27