日期:2014-05-18 浏览次数:21131 次
        public static bool Judge(string str)
        {
            for (int i = 0; i < str.Length / 2; i++)
                if (str[i] != str[str.Length - 1 - i])
                    return false;
            return true;
        }