예제 #1
0
 public static void Run()
 {
     Context context = new Context();
     Random rnd = new Random();
     for (int i = 0; i < Context.LIMIT; i++)
     {
         Console.Write(context.ResultState(rnd.Next(0, 3)));
     }
 }