using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication10 { class Program { static void Main(string[] args) { string contents = "AAbbcdefghhh";//这个字符串需要是连续的,不能有空格啥的。那么空格该如何除去呢?如果也把空格记录在内呢?嘿嘿 //字典,key必须是int类型,value必须是string类型 Dictionary<char, int> count = new Dictionary<char, int>(); foreach (var item in contents) { if(count.ContainsKey(item)) { count[item]++; } else { count[item] = 1; } } foreach (KeyValuePair<char,int> item in count) { Console.WriteLine(item.Key+" " +item.Value); } Console.ReadKey(); } } }
从前用C语言的时候,也经常做这样的题目。不过到了C#,确实感觉到了一些很强大的类,只要你知道这个类的存在,解决一些问题的时候,就会很迅速。
感恩曾经帮助过 心少朴 的人。
C#优秀,值得学习。Winform,WPF 都可以关注一下,眼界要开阔。
Visual Studio IDE很好用,推荐!
注:此文是自学笔记所生,质量中等,故要三思而后行。新手到此,不可照搬,应先研究其理象数,待能变通之时,自然跳出深坑。