static void Main(string[] args)
{
string str;
str = Console.ReadLine();
int i, j;
i = 0;
j = str.Length - 1;
while (i < j)
{
if (str.Substring(i, 1) == str.Substring(j, 1))
{
i++;
j--;
}
else
break;
}
if (i >= j)
{
Console.WriteLine("是回文数");
}
else
{
Console.WriteLine("不是回文数");
}
Console.Read();
}
|