首頁 > 後端開發 > C#.Net教程 > C#程式統計每個字元出現的次數

C#程式統計每個字元出現的次數

PHPz
發布: 2023-09-06 17:41:02
轉載
1936 人瀏覽過

C#程式統計每個字元出現的次數

首先,設定字串-

string str = "Website";
Console.WriteLine("String: "+str);
登入後複製

檢查字串中的每個字元並增加一個變數來計算該字元出現的次數-

for (int j = 0; j < str.Length; j++) {
   if (str[0] == str[j]) {
      cal++;
   }
}
登入後複製

Example

您可以嘗試執行以下程式碼來計算每個字元的出現次數。

示範範例

using System;
public class Demo {
   public static void Main() {
      string str = "Website";
      Console.WriteLine("String: "+str);
      while (str.Length > 0) {
         Console.Write(str[0] + " = ");
         int cal = 0;
         for (int j = 0; j < str.Length; j++) {
            if (str[0] == str[j]) {
               cal++;
            }
         }
         Console.WriteLine(cal);
         str = str.Replace(str[0].ToString(), string.Empty);
      }
      Console.ReadLine();
   }
}
登入後複製

輸出

String: Website
W = 1
e = 2
b = 1
s = 1
i = 1
t = 1
登入後複製

以上是C#程式統計每個字元出現的次數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板