月を表す数値を入力し、大の月であれば、“n月は大の月です”、小の月であれば“n月は小の月です”と表示するプログラムを作成しなさい。
また、1 ~ 12 以外の数値が入力された場合に、“そんな月はありません”と表示する機能を追加しなさい。
Dim month As Integer
Console.WriteLine("何月ですか?")
month = Integer.Parse(Console.ReadLine())
Select Case month
Case 1, 3, 5, 7, 8, 10, 12
Console.WriteLine("{0}月は大の月です", month)
Case 2, 4, 6, 9, 11
Console.WriteLine("{0}月は小の月です", month)
End Select
Dim month As Integer
Console.WriteLine("何月ですか?")
month = Integer.Parse(Console.ReadLine())
Select Case month
Case 1, 3, 5, 7, 8, 10, 12
Console.WriteLine("{0}月は大の月です", month)
Case 2, 4, 6, 9, 11
Console.WriteLine("{0}月は小の月です", month)
Case Else
Console.WriteLine("そんな月はありません")
End Select