求大神解答,如果一个数首位是0,怎样可以把包括0的这个数输出来如果输入5217,结果该是0641,而我是641
using System;using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string st;
st=Console.ReadLine();
int x,a,b,c,d;
x = Convert.ToInt32(st);
a = (x % 10 + 9) % 10;
b = (x / 10 % 10 + 9) % 10;
c = (x / 100 % 10 + 9) % 10;
d = (x /1000 % 10 + 9) % 10;
x = b * 1000 + a * 100 + d * 10 + c;
Console.WriteLine("{0}", x);
Console.ReadLine();
}
}
}
如果输入5217,结果该是0641,而我是641