1){ Console.WriteLine( "Character"+(char)i);&nbs"/> 1){ Console.WriteLine( "Character"+(char)i);&nbs">
設定字元的最大值。
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中文網其他相關文章!