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