Beispiel #1
0
 static void Main(string[] args)
 {
     BombSweeper x = new BombSweeper();
     string[] a = {".....",
      ".....",
      "..B..",
      ".....",
      "....."};
     Console.WriteLine(x.winPercentage(a));
     Console.ReadLine();
 }
Beispiel #2
0
        static void Main(string[] args)
        {
            BombSweeper x = new BombSweeper();

            string[] a = { ".....",
                           ".....",
                           "..B..",
                           ".....",
                           "....." };
            Console.WriteLine(x.winPercentage(a));
            Console.ReadLine();
        }