摘要: 代码如下:(类似于编程之美的2.17,数组循环移位) static void Main(string[] args) { string input = "Hello World Welcome"; char[] tempArray = input.ToCharArray(); string result = RightShift(tempArray, 0, tempArray.Length-1); } public static string Rig... 阅读全文
posted @ 2013-12-17 12:28 higirle 阅读(674) 评论(0) 推荐(0) 编辑