標題:
C# 7 410 生日人數
[打印本頁]
作者:
may
時間:
2024-1-8 22:33
標題:
C# 7 410 生日人數
TQC+ 物件導向程式語言
最新一次更新時間:2024-01-05 15:03:30
1. 題目說明:
請新增一個主控台應用程式,加入C:\ANS.CSF\CS04資料夾中的CSD04.cs進行編寫。依下列題意進行作答:輸入月份,再判斷及輸出在該月份生日的人數,使輸出值符合題意要求。檔案名稱請另存新檔為CSA04.cs,儲存於C:\ANS.CSF\CS04資料夾,再進行評分。
2. 設計說明:
請撰寫程式,讓使用者輸入月份n,其中專案中已定義名為birthday的陣列,代表多位員工的出生日期。請判斷n月有幾位員工生日,並輸出生日人數。若輸入文字或非法月份,請輸出【error】。
3. 輸入輸出:
輸入說明
月份
輸出說明
生日人數(輸出最後一行後不自動換行)
範例輸入1
3
範例輸出1
4
範例輸入2
7
範例輸出2
0
範例輸入3
13
範例輸出3
error
4. 評分項目:
(1) 符合設計說明輸出正確格式 配分20
作者:
may
時間:
2024-1-9 09:39
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSA04
{
class CSA04
{
static string[] birthday = { "1980/1/11", "1985/3/2", "1985/12/3","1986/6/3","1986/11/14","1987/2/2","1987/8/1","1987/10/12","1987/9/3","1987/8/1","1987/4/12","1988/1/3","1987/5/6","1987/6/7","1987/8/19","1987/6/13","1987/10/9","1986/4/8","1987/5/15","1987/2/19","1987/3/15", "1987/3/11", "1987/3/31" };
static void Main(string[] args)
{
try
{
int mm = Convert.ToInt32(Console.ReadLine());
if(mm<1 || mm > 12) { throw new Exception(); }
int pers = 0;
for(int i = 0; i <= birthday.Length - 1; i++)
{
DateTime bday = Convert.ToDateTime(birthday[i].ToString());
if(bday.Month == mm )
{
pers += 1;
}
}
Console.Write(pers);
}
catch
{
Console.Write("error");
}
Console.ReadKey();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2