返回列表 發帖

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

  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. using System.Collections;

  8. namespace CSA05
  9. {
  10.     class CSA05
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             try
  15.             {
  16.                 string str = Console.ReadLine();
  17.                 if (str=="") { throw new Exception(); }
  18.                 int i = 0;
  19.                 using (StreamReader sr = new StreamReader(AppDomain.CurrentDomain.BaseDirectory + "/read.txt", Encoding.ASCII))
  20.                 {
  21.                     string data = sr.ReadToEnd().Trim();
  22.                     int index = data.IndexOf(str);
  23.                     while (index != -1)
  24.                     {
  25.                         i++;
  26.                         index = data.IndexOf(str, index + 1);
  27.                     }
  28.                 }
  29.                 Console.Write(i);
  30.             }
  31.             catch
  32.             {
  33.                 Console.Write("error");
  34.             }
  35.             Console.ReadKey();
  36.         }


  37.     }
  38. }
複製代碼
May

TOP

返回列表