int类型如果首位是0,0是不会被显示的,你想显示的时候显示02就要将他转换为string类型,手动给他补0上去,如:a=1,MessageBox.Show(a.ToString("00"))或者MessageBox.Show(a.ToString().PadLeft(2, '0'))。