摘要:
//以单词为单位对字符串进行翻转,先按照字母进行翻转,然后按照单词进行翻转 string str1 = "12345 67890"; string str2 = ""; string str3 = ""; for (int o = str1.Length - 1; o >= 0; o--) str2 += str1[o];//按字母翻转 char[] chArr = new char[str1.Length]; int i = 0; int j = 0; int index = 0; while (index < str2 阅读全文
posted @ 2008-03-19 17:57
先之
阅读(469)
评论(0)
推荐(0)
浙公网安备 33010602011771号