C#计算每个字符的出现次数

using System;public class Demo {public static void Main() {string str = Website;Console.WriteLine(String: +str);

编程学习网为您整理以下代码实例,主要实现:C#计算每个字符的出现次数,希望可以帮到各位朋友。

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();
   }
}

本文标题为:C#计算每个字符的出现次数

基础教程推荐