摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ReverseSentence{ class Program { static string ReverseSentence(string str) { if (str == null || str == string.Empty) { throw new Exception("input strin... 阅读全文
posted @ 2011-12-16 15:42 Ligeance 阅读(535) 评论(0) 推荐(0) 编辑