Yacht Dice
·
C#
// made by celbeing// tistory: celbeing.tistory.com// baekjoon: @kimsd1983// atcoder: @kimsd1983using System;class YachtDICE{ static int[] Dice = new int[5]; static int[] DiceCount = new int[7]; static bool[] Hold = new bool[5]; // T=Hold static int RollCount = 0; static int TurnCount = 0; static bool Turn = true; // T=1, F=2 static bool ContinueGame = true; static string UserInput; static..