首頁 > 後端開發 > C#.Net教程 > 如何使用 C# 列印字串中的重複字元?

如何使用 C# 列印字串中的重複字元?

王林
發布: 2023-08-28 11:53:09
轉載
927 人瀏覽過

如何使用 C# 打印字符串中的重复字符?

設定字元的最大值。

static int maxCHARS = 256;
登入後複製

現在顯示字串中的重複字元。

String s = "Welcometomywebsite!";

int []cal = new int[maxCHARS];
calculate(s, cal);

for (int i = 0; i < maxCHARS; i++)
if(cal[i] > 1) {
   Console.WriteLine("Character "+(char)i);
   Console.WriteLine("Occurrence = " + cal[i] + " times");
}
登入後複製

上面,我們計算了字元的頻率。下面的完整範例顯示了相同的內容 -

範例

using System;
class Demo {
   static int maxCHARS = 256;
   static void calculate(String s, int[] cal) {

      for (int i = 0; i < s.Length; i++)
      cal[s[i]]++;
   }

   public static void Main() {
      String s = "Welcometomywebsite!";

      int []cal = new int[maxCHARS];
      calculate(s, cal);

      for (int i = 0; i < maxCHARS; i++)
      if(cal[i] > 1) {
         Console.WriteLine("Character "+(char)i);
         Console.WriteLine("Occurrence = " + cal[i] + " times");
      }
   }
}
登入後複製

以上是如何使用 C# 列印字串中的重複字元?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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