62,254
社区成员
发帖
与我相关
我的任务
分享 StringBuilder MyCi = new StringBuilder();
for (int x = 0; x < 300; x++)
{
Random Rand = new Random();
MyCi.Append(Rand.Next(0,1000 + " ");
}
MessageBox.Show(MyCi.ToString()); StringBuilder MyCi = new StringBuilder();
for (int x = 0; x < 300; x++)
{
Random Rand = new Random(x);
MyCi.Append(Rand.Next(0,1000 + " ");
}
MessageBox.Show(MyCi.ToString());
StringBuilder MyCi = new StringBuilder();
Random Rand = new Random();
for (int x = 0; x < 300; x++)
{
MyCi.Append(Rand.Next(0,1000).ToString() + " ");
}
MessageBox.Show(MyCi.ToString());