標題:
C# 7 502 寫入資料至文字檔
[打印本頁]
作者:
may
時間:
2024-1-8 22:35
標題:
C# 7 502 寫入資料至文字檔
TQC+ 物件導向程式語言
最新一次更新時間:2024-01-05 15:10:27
1. 題目說明:
請新增一個主控台應用程式,加入C:\ANS.CSF\CS05資料夾中的CSD05.cs進行編寫。依下列題意進行作答:輸入任意資料,寫入至檔案,再予以輸出,使輸出值符合題意要求。檔案名稱請另存新檔為CSA05.cs,儲存於C:\ANS.CSF\CS05資料夾,再進行評分。
請使用正斜線(/)作為檔案路徑的分隔符號。
2. 設計說明:
請撰寫程式,讓使用者輸入任意資料(單行),輸出使用者的輸入內容並寫入至write.txt檔案中,每一次皆覆蓋上一次的資料,若輸入空值,請輸出【error】,不進行資料寫入。
請使用print()方法,從write.txt中讀出檔案內容並輸出【write:xxx】。
3. 輸入輸出:
輸入說明
任意資料
輸出說明
將使用者輸入內容寫入至write.txt檔案中。再輸出檔案中的內容(輸出最後一行後不自動換行)
範例輸入1
Jacky,male
範例輸出1
write:Jacky,male
image alt
4. 評分項目:
(1) 符合設計說明輸出正確格式 配分20
作者:
may
時間:
2024-1-9 09:41
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 FILE_NAME = "write.txt";
static void Main(string[] args)
{
try
{
//TODO
string line = Console.ReadLine();
if (string.IsNullOrEmpty(line))
{
throw new ArgumentException();
}
System.IO.File.WriteAllText(FILE_NAME, line);
print();
}
catch
{
Console.Write("error");
}
Console.ReadKey();
}
static void print()
{
// TODO
string line = System.IO.File.ReadAllText(FILE_NAME);
Console.Write("write:" + line);//TODO
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2