2013年4月22日

C#:算法题

摘要: 1. 将字符串s1中所有出现在字符串s2中的字符删去 using System; namespace ConsoleApplication56 { class Program { static void Main(string[] args) { string s1 = "aaabbccabfcabcc"; string s2 = "abcd"; char[] results = new char[s1.Length]; int m=0; ... 阅读全文

posted @ 2013-04-22 17:32 LilianChen 阅读(1038) 评论(0) 推荐(2) 编辑

导航