int iRandom = 0;
int iSelction = 0;
string [] choice = {"가위", "바위", "보"};
iRandom = (new Random()).Next(1, 4);
Console.Write("1(가위),2(바위),3(보) 입력 : _\b");
iSelction = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\n사용자 : {0}", choice[iSelction -1]);
Console.WriteLine("컴퓨터 : {0}\n", choice[iRandom -1]);
여기서 choce[iSelction -1]을 한이유가
choice 배열에 인트형으로 변환해서 넣었는데 그냥 -1안하고 1,2,3으로하면
배열인덱스는 0,1,2 식하는데 그럼 안맞아서 오류가 나는게 맞는건가요?
그래서 iRamdom 변수 지정값도 1,4를줘서 뺴준거 맞나요??