[BOJ 6941] Calendar

View as PDF

Submit solution

Points: 1
Time limit: 1.0s
Memory limit: 128M

Problem type
Allowed languages
Assembly, Awk, C, C++, Java, Pascal, Perl, Python, Sed, Text

Write a program to print out a calendar for a particular month given the day on which the first of the month occurs together with the number of days in the month.</p>

Your program should take as input an integer representing the day of the week on which the month begins (1 for Sunday, 2 for Monday, …, 7 for Saturday), and an integer which is the number of days in the month (between 28 and 31 inclusive). Your program should print the appropriate calendar for the month. You can assume that all input data will be valid.

BOJ-specific note: None of the output lines should contain trailing whitespace. The last line must end with a newline.

입력 형식

출력 형식

예제 입력

3 30

예제 출력

Sun Mon Tue Wed Thr Fri Sat
          1   2   3   4   5
  6   7   8   9  10  11  12
 13  14  15  16  17  18  19
 20  21  22  23  24  25  26
 27  28  29  30

Comments

There are no comments at the moment.