摘要: C#给你一个string字符串, abcd as,ccd.dsa反转这个字符串变为: dsa.ccd,as abcd要求:不能用【任何】【系统函数】。实现代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;namespace ReverseString{ class Program { public static string ReverseString(String ori... 阅读全文
posted @ 2012-05-31 15:57 xiaoshiyilang 阅读(1107) 评论(15) 推荐(0) 编辑