배열을 사용해서 월을 입력받아서, 입력된 월이 몇일 까지 있는지 출력하는 프로그램
예) 월을 입력해 주세요 >> 11
11월은 30일 까지 있습니다.
package chapter20230808;
import java.util.*;
public class test12 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
// 1 ~ 12월 까지의 일수를 배열에 적어줌
int[] days = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int month;
System.out.print("월을 입력해 주세요 >>> ");
month = sc.nextInt();
System.out.print(month + " 월은 " + days[month - 1] + " 일 까지 있습니다.");
}
}