给你一个整数 x ,如果 x 是一个回文整数,返回 true ;否则,返回 false 。

    回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。

    例如,121 是回文,而 123 不是。

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace ConsoleApplication1
    6. {
    7. class Program
    8. {
    9. static void Main(string[] args)
    10. {
    11. int i;
    12. Console.Write("请输入数字:");
    13. char[] S = Console.ReadLine().ToCharArray();
    14. int num = S.Length;
    15. int result = num / 2;
    16. for (i = 0; i < num / 2; i++)
    17. {
    18. if (S[i] != S[num - i - 1])
    19. {
    20. break;
    21. }
    22. }
    23. if (i >= num / 2)
    24. {
    25. Console.WriteLine("是回文数。");
    26. }
    27. else
    28. {
    29. Console.WriteLine("不是回文数。");
    30. }
    31. }
    32. }
    33. }