int compCount = 0; //Количество побед компьютера int userCount = 0; //Количество побед Игрока //Определение победителя private void WhoWinner(int userChoice) { int compChoice = CompChoice(); int difCompUser = compChoice - userChoice; if ((difCompUser == -2) || (difCompUser == 1)) { MessageBox.Show("Ты победил!"); userCount++; } else if ((difCompUser == -1) || (difCompUser == 2)) { MessageBox.Show("Победил компьютер!"); compCount++; } else { MessageBox.Show("Ничья!"); } lblScore.Text = compCount.ToString() + " : " + userCount.ToString(); }