设置字符的最大值。
static int maxCHARS = 256;
登录后复制
现在显示字符串中的重复字符。
String s = "Welcometomywebsite!";
int []cal = new int[maxCHARS];
calculate(s, cal);
for (int i = 0; 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 1) {
Console.WriteLine("Character "+(char)i);
Console.WriteLine("Occurrence = " + cal[i] + " times");
}
}
}
登录后复制
以上就是如何使用 C# 打印字符串中的重复字符?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!