如何跟用户输入一样多次跟踪生成的数字

时间:2019-03-31 21:50:59

标签: c# for-loop return

代码正在生成1-100之间的奇数随机数

我尝试添加txtInput以返回,我尝试将txtInputcountrand添加到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。等等。

0 个答案:

没有答案