標題:
C# 7 501 讀取文字資料
[打印本頁]
作者:
may
時間:
2024-1-8 22:34
標題:
C# 7 501 讀取文字資料
TQC+ 物件導向程式語言
最新一次更新時間:2024-01-05 15:04:58
1. 題目說明:
請新增一個主控台應用程式,加入C:\ANS.CSF\CS05資料夾中的CSD05.cs進行編寫。依下列題意進行作答:輸入一個數字,做為筆數編號,再讀取及輸出指定檔案此數字代表的資料,使輸出值符合題意要求。檔案名稱請另存新檔為CSA05.cs,儲存於C:\ANS.CSF\CS05資料夾,再進行評分。
請使用正斜線(/)作為檔案路徑的分隔符號。
2. 設計說明:
請撰寫程式,讀取read.txt檔案內容,讓使用者輸入一個正整數n(1≦n≦10),輸出read.txt中的第n筆資料,若輸入文字或不在指定範圍的數字,請輸出【error】。
3. 輸入輸出:
輸入說明
一個正整數n(1≦n≦10)
輸出說明
read.txt中的第n筆資料(輸出最後一行後不自動換行)
範例輸入1
1
範例輸出1
1:Albee,1980/12/3,B315901910,90,85,100
範例輸入2
11
範例輸出2
error
4. 評分項目:
(1) 符合設計說明輸出正確格式配分 20
作者:
may
時間:
2024-1-9 09:40
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace CSA05
{
class CSA05
{
static void Main(string[] args)
{
try
{
int row =Convert.ToInt32(Console.ReadLine());
if (row < 1 || row > 10) { throw new Exception(); }
StreamReader sr = new StreamReader(AppDomain.CurrentDomain.BaseDirectory + "/read.txt", Encoding.Default);
string data = "";
for(int i = 1; i <= row; i++)
{
data = sr.ReadLine();
}
Console.Write("{0}:{1}" , row , data);
}
catch
{
Console.Write("error");
}
Console.ReadKey();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2