標題:
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace CSA05
{
class CSA05
{
static string[] new_student = { "Sam", "1981/10/1", "A234567890" };
static void Main(string[] args)
{
try
{
//TODO
string line = String.Join(",", new_student);
string[] scoreList = Console.ReadLine().Split(new char[] { ' ' });
int score;
if (scoreList.Length != 3)
{
throw new ArgumentException();
}
for (int i = 0; i < scoreList.Length; i++)
{
score = int.Parse(scoreList[i]);
if (score < 0 || 100 < score)
{
throw new ArgumentException();
}
}
line += "," + String.Join(",", scoreList);
using (StreamWriter writer = new StreamWriter("write.txt", true))
{
writer.WriteLine(line);
}
Console.Write(line);
}
catch
{
Console.Write("error");
}
Console.ReadKey();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2