Board logo

標題: C# 7 504 文字檔資料新增 [打印本頁]

作者: may    時間: 2024-1-8 22:37     標題: C# 7 504 文字檔資料新增

TQC+ 物件導向程式語言
最新一次更新時間:2024-01-05 17:42:17

1. 題目說明:
請新增一個主控台應用程式,加入C:\ANS.CSF\CS05資料夾中的CSD05.cs進行編寫。依下列題意進行作答:輸入三個成績,將資料寫入至檔案,再進行輸出,使輸出值符合題意要求。檔案名稱請另存新檔為CSA05.cs,儲存於C:\ANS.CSF\CS05資料夾,再進行評分。
請使用正斜線(/)作為檔案路徑的分隔符號。

2. 設計說明:
請撰寫程式,讓使用者輸入三個成績(成績之間,以一個半形空格分隔,且0≦成績≦100),將專案中名為new_student的陣列改成以半形逗號分隔的字串,結合同樣以半形逗號分隔的三個成績字串,以附加的方式寫入write.txt檔案中並輸出。若輸入文字、成績未在0~100之間,或輸入格式不合規定的資料,請輸出【error】。

3. 輸入輸出:
輸入說明
三個成績(成績之間,以一個半形空格分隔,且0≦成績≦100)

輸出說明
new_student陣列資料及使用者輸入的成績
(輸出最後一行後不自動換行)

範例輸入1
90 90 90
範例輸出1
Sam,1981/10/1,A234567890,90,90,90
image alt

範例輸入2
90 90 KJ
範例輸出2
error

4. 評分項目:
(1) 符合設計說明輸出正確格式        配分        20
作者: may    時間: 2024-1-9 09:43

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.IO;
  7. namespace CSA05
  8. {
  9.     class CSA05
  10.     {
  11.         static string[] new_student = { "Sam", "1981/10/1", "A234567890" };
  12.         static void Main(string[] args)
  13.         {
  14.             try
  15.             {
  16.                 //TODO
  17.                 string line = String.Join(",", new_student);
  18.                 string[] scoreList = Console.ReadLine().Split(new char[] { ' ' });
  19.                 int score;

  20.                 if (scoreList.Length != 3)
  21.                 {
  22.                     throw new ArgumentException();
  23.                 }
  24.                 for (int i = 0; i < scoreList.Length; i++)
  25.                 {
  26.                     score = int.Parse(scoreList[i]);
  27.                     if (score < 0 || 100 < score)
  28.                     {
  29.                         throw new ArgumentException();
  30.                     }
  31.                 }
  32.                 line += "," + String.Join(",", scoreList);

  33.                 using (StreamWriter writer = new StreamWriter("write.txt", true))
  34.                 {
  35.                     writer.WriteLine(line);
  36.                 }
  37.                 Console.Write(line);
  38.             }
  39.             catch
  40.             {
  41.                 Console.Write("error");
  42.             }
  43.             Console.ReadKey();
  44.         }


  45.     }
  46. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2