プログラムは次のとおりです。
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」を使用してみましたが、最後の数桁が他の数字であるゼロの束が表示されます。