fork download
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<string.h>
  4. #define WHO_LEN 10
  5. #define WHAT_LEN 40
  6. #define WHEN_LEN 5
  7. #define WHERE_LEN 20
  8. #define MAX 10 /* 資料最大10筆 */
  9. #define ENTER 10 /* Enter 之 ASCII 碼*/
  10. #define SPACE 32 /* Space 之 ASCII 碼*/
  11. struct Node /* 宣告 Node 節點結構 */
  12. {
  13. char name[WHO_LEN];
  14. char affair[WHAT_LEN];
  15. char date[WHEN_LEN];
  16. char place[WHERE_LEN];
  17. struct Node *next;
  18. };
  19. typedef struct Node *DATA; /* Linked List 節點的新型態 */
  20. char menu(int *); /* 傳入的 BEGIN 在第二次執行的時候會改變,所以用指標傳入位址 */
  21. DATA EnterRecord(int *,DATA);
  22. void displayDATA(DATA);
  23. int main(void)
  24. {
  25. int BEGIN=1; /* 程式開始設為1,當 menu 執行過一次將改為 0 */
  26. char choice;
  27. int count=0; /* 資料總數,預設為 0 */
  28. DATA first=NULL; /* Linked list 的開頭指標 */
  29. FILE *fptr1;
  30. FILE *fptr2;
  31. printf("讀取檔案後,目前資料有筆\n");
  32. choice=(menu(&BEGIN));
  33. while(choice!='e' || choice!='E')
  34. {
  35. switch(choice)
  36. {
  37. case '1':
  38. first=(EnterRecord(&count,first));
  39. choice=menu(&BEGIN); /* 回到選單 */
  40. break;
  41. case '2':
  42. choice=menu(&BEGIN); /* 回到選單 */
  43. break;
  44. case '3':
  45. choice=menu(&BEGIN); /* 回到選單 */
  46. break;
  47. case '4':
  48. displayDATA(first);
  49. choice=menu(&BEGIN); /* 回到選單 */
  50. break;
  51. case '5':
  52. choice=menu(&BEGIN); /* 回到選單 */
  53. break;
  54. case '6':
  55. choice=menu(&BEGIN); /* 回到選單 */
  56. break;
  57. case '7':
  58. choice=menu(&BEGIN); /* 回到選單 */
  59. break;
  60. case '8':
  61. choice=menu(&BEGIN); /* 回到選單 */
  62. break;
  63. case '9':
  64. choice=menu(&BEGIN); /* 回到選單 */
  65. break;
  66. case 'e':
  67. case 'E':
  68. printf("資料是否儲存?(案y是,否則程式結束):");
  69. scanf(" %c",&choice);
  70. if(choice=='y' || choice=='Y')
  71. {
  72. fptr2=fopen("data.txt","w"); /* 開檔,存取模式 w,不需要偵測檔案是否開啟失敗 */
  73. if(1)
  74. printf("檔案儲存完畢\n");
  75. fclose(fptr2);
  76. }
  77. return 0;
  78. }
  79. }
  80. }
  81. char menu(int *begin)
  82. {
  83. char tmp[10];
  84. char c;
  85. if(*begin==1)
  86. {
  87. printf("組員:\n");
  88. }
  89. do{
  90. fflush(stdin);
  91. printf("==================\n");
  92. printf("請輸入選擇:\n");
  93. printf("Enter record :請按1\n");
  94. printf("View day :請按2\n");
  95. printf("View week :請按3\n");
  96. printf("View all :請按4\n");
  97. printf("Modify :請按5\n");
  98. printf("Delete :請按6\n");
  99. printf("Search :請按7\n");
  100. printf("Show duration:請按8\n");
  101. printf("Merge :請按9\n");
  102. printf("Exit :請按E\n");
  103. printf("==================\n");
  104. scanf(" %c",&c);
  105. if((c!='1') && (c!='2') && (c!='3') && (c!='4') && (c!='5') && (c!='6') && (c!='7') && (c!='8') && (c!='9') && (c!='e') && (c!='E'))
  106. printf("請輸入正確的選擇!\n");
  107. }while((c!='1') && (c!='2') && (c!='3') && (c!='4') && (c!='5') && (c!='6') && (c!='7') && (c!='8') && (c!='9') && (c!='e') && (c!='E'));
  108. return c;
  109. }
  110. DATA EnterRecord (int *num,DATA first) /* 選項一,輸入資料 */
  111. {
  112. char ch; /* 讀取空白或字元 */
  113. char choice; /* 讓使用者輸入是否繼續的選擇 */
  114. DATA new_record;
  115. char *str; /* 宣告字元陣列,儲存鍵盤輸入的字串*/
  116. do
  117. {
  118. fflush(stdin);
  119. new_record=(DATA)malloc(sizeof(DATA)); /* 配置節點記憶體 */
  120. str=(char *)malloc(WHO_LEN*sizeof(char)); /* 配置 who 字串的記憶體 */
  121. do
  122. {
  123. printf("請輸入人名,案Enter鍵結束輸入:");
  124. scanf("%s",str);
  125. if(strlen(str)>=WHO_LEN)
  126. printf("輸入錯誤!!\n");
  127. }while(strlen(str)>=WHO_LEN);
  128. strcpy(new_record->name,str);
  129. scanf("%c",&ch); /* 讀取 Enter */
  130. free(str); /* 釋放 WHO 字串的記憶體 */
  131. str=(char *)malloc(WHAT_LEN*sizeof(char)); /* 配置 what 字串的記憶體 */
  132. printf("請輸入要做的事情,案Enter鍵結束:");
  133. scanf("%s",str);
  134. strcpy(new_record->affair,str);
  135. scanf("%c",&ch); /* 讀取 Enter */
  136. free(str); /* 釋放 what 字串的記憶體 */
  137. str=(char *)malloc(WHEN_LEN*sizeof(char)); /* 配置 when 字串的記憶體 */
  138. printf("請輸入日期,案Enter鍵結束輸入:");
  139. scanf("%s",str);
  140. strcpy(new_record->date,str);
  141. scanf("%c",&ch); /* 讀取 Enter */
  142. free(str); /* 釋放 when 字串的記憶體 */
  143. str=(char *)malloc(WHERE_LEN*sizeof(char)); /* 配置 where 字串的記憶體 */
  144. printf("請輸入地名,案Enter鍵結束輸入:");
  145. scanf("%s",str);
  146. strcpy(new_record->place,str);
  147. scanf("%c",&ch); /* 讀取 Enter */
  148. free(str); /* 釋放 where 字串的記憶體 */
  149. new_record->next=first; /* 新節點的 next 指向目前開頭的 first */
  150. first=new_record; /* 新節點成為第一個節點 */
  151. *num=*num+1;
  152. printf("是否繼續輸入資料?(案y繼續or其他鍵離開)");
  153. scanf(" %c",&choice);
  154. }while(choice=='y' || choice=='Y');
  155. return first;
  156. }
  157. void displayDATA(DATA first)
  158. {
  159. int i;
  160. for(i=0;first;first=first->next)
  161. {
  162. printf("第%d筆資料\n",++i);
  163. printf("who :%s\n",first->name);
  164. printf("what :%s\n",first->affair);
  165. printf("when :%s\n",first->date);
  166. printf("where :%s\n",first->place);
  167. }
  168. return;
  169. }
  170.  
Runtime error #stdin #stdout 0.01s 1684KB
stdin
Standard input is empty
stdout
讀取檔案後,目前資料有筆
組員:
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search       :請按7
Show duration:請按8
Merge        :請按9
Exit         :請按E
==================
請輸入正確的選擇!
==================
請輸入選擇:
Enter record :請按1
View  day    :請按2
View  week   :請按3
View  all    :請按4
Modify       :請按5
Delete       :請按6
Search