这是程序:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplicationlotto
{
class Program
{
const int LIMIT = 7;
static void Main(string[] args)
{
int[] lotto = new int[LIMIT];
int lotDigits;
Random rnd = new Random();
foreach (int sub in lotto)
{
lotDigits = rnd.Next(0, 8);
Console.WriteLine(lotDigits);
}
}
}
}
我希望它连续显示 7 个随机数字,形成一个 7 位“乐透号码”,所以它看起来像“5902228”而不是:
5
9
0
2
2
2
8
我尝试使用“0:D7”,它给了我一堆零,最后几位数字是其他数字。