本帖最后由 张小康 于 2013-10-25 22:41 编辑
我贴一个用集合来做出来的方法- string str = "Welcome to China";
- str = str.ToUpper();
-
- Dictionary<char, int> dic = new Dictionary<char, int>();
- for (int i = 0; i < str.Length;i++ )
- {
- if (str[i]==' ')
- {
- continue;//如果是空的话,进入下一个循环
- }
- if (!dic.ContainsKey(str[i]))//如果集合中的键中没有这个字符
- {
- dic.Add(str[i], 1);//集合中添加一对成员,字符作为键,值为1
- }
- else//集合中已经键中有这个字符
- {
- dic[str[i]] += 1;;让这个键指向的值加1
- }
- }
- foreach (KeyValuePair<char,int> item in dic)
- {
- Console.WriteLine("{0}出现的次数是{1}", item.Key, item.Value);
- }
- Console.ReadKey();
复制代码 |