这个程序不知道符不符合要求?
namespace 随机数
{
class Program
{
static void Main(string[] args)
{
//创建一个动态数组
ArrayList arr = new ArrayList();
while (true)
{
Console.ReadKey();
//饮用方法,传入参数
recile(ref arr);
}
}
//创建一个方法,参数包含一个数组
static void recile(ref ArrayList arr)
{
//创建一个随机int变量
Random rad = new Random();
int radkey = rad.Next(0, 100);
//判断随机生成的int变量是否包含在数组中
foreach (int arr0 in arr)
{
if (radkey != arr0)
continue;
else
return;
}
Console.WriteLine(radkey);
//将值加入到动态数组中
arr.Add(radkey);
}
}
} |