产生不同的随机数
Random ran =new Random();
int[] j=new int[10];
for (int i =0;i<10;i++)
{
j[i]=ran.Next(1000,9999);
this.comboBox1.Items.Add(j[i]);
}