using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int t = 0;
try
{
t = int.Parse(Console.ReadLine());
}
catch (Exception ee)
{
Console.WriteLine(ee.Message);
return;
}
string s = t.ToString();
for (int i = s.Length-1; i>=0; i--)
{
Console.Write(s[i]);
}
Console.Read();
}
}
}
这里的try{}catch(){}是为了避免输入的是非整数而停止运行 可以不写
重点是在后面的for循环