编程学习网为您整理以下代码实例,主要实现: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();
}
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!