摘要: 算法题1、如何将string类型的1-9的数字串分放到数组中?static void Main(string[] args){ string strA = string.Empty; string str = "123456789"; for (int i = 0; i < str.Length; i++) { strA += str.Substring(i,1)+","; } Console.WriteLine(strA.TrimE... 阅读全文
posted @ 2012-09-16 23:11 晓周的园子 阅读(136) 评论(0) 推荐(0) 编辑