代码正在生成1-100之间的奇数随机数
我尝试添加txtInput
以返回,我尝试将txtInput
,count
和rand
添加到Console.WriteLine
。我不知道我在做什么错。
for (int count =1; count <=txtInput; count++)
{
Random generator = new Random();
int rand = generator.Next(1, 100);
Console.WriteLine(rand);
return;
}
Close();
我希望代码可以吐出一个与用户输入次数相同的新随机数。就像用户输入4一样,控制台将吐出:17、42、3、25、6。等等。