1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace Birthday
7 {
8 class Program
9 {
10 /**/
11 /// <summary>
12 /// 小明和小強都是張老師的學生,張老師的生日是M月N日,
13 /// 2人都知道張老師的生是下列10組中的一天,
14 /// 張老師把M值告訴了小明,把N值告訴了小強,
15 /// 張老師問他們知道他的生日是那一天嗎?
16 /// 3月4日 3月5日 3月8日
17 /// 6月4日 6月7日
18 /// 9月1日 9月5日
19 /// 12月1日 12月2日 12月8日
20 /// 小明說:如果我不知道的話,小強肯定也不知道
21 /// 小強說:本來我也不知道,但是現在我知道了
22 /// 小明說:哦,那我也知道了
23 /// 請根據以上對話推斷出張老師的生日是哪一天??
24 ///
25 /// Author : 木子
26 /// CopyRight: http://blog.moozi.net/
27 /// </summary>
28 /// <param name="args"></param>
29 static void Main(string[] args)
30 {
31 Dictionary<int, int[]> birthdays = new Diction