자릿수 입력 만큼 스트링 배열을 반환하는 매소드(비밀번호찾기)
//대상 배열의 인자를 기준으로 입력되는 int의 값만큼의 자릿수의 스트링 배열을 만들어줌 //예) string[] rtn = { "AAAA", "AAAB" ....... "jjjj"} string[] int2String(int cipher) { string[] aTemp = new string[] { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J" }; int maxIdx = Convert.ToInt32(Math.Pow((double)10, (double)cipher)); string[] rtn = new string[maxIdx]; string format = "D" + cipher.ToString(); for (int idx = 0; idx < maxIdx; ..