-
Автор темы
- #1
System::Void case2::MyForm::button1_Click(System::Object^ sender, System::EventArgs^ e)
{
srand(time(NULL));
if (case111) {
std::string drop[5]{ "paper", "pen", "hair", "bottle", "pencil" };
int numofdrop = rand () % 5;
MessageBox::Show("Your drop is:", drop[numofdrop]);
}
}
в чем ошибка? выдает E0304 ошибкку
и тоесть месседжбокс в целом не выводит переменные как вывести его?
{
srand(time(NULL));
if (case111) {
std::string drop[5]{ "paper", "pen", "hair", "bottle", "pencil" };
int numofdrop = rand () % 5;
MessageBox::Show("Your drop is:", drop[numofdrop]);
}
}
в чем ошибка? выдает E0304 ошибкку
и тоесть месседжбокс в целом не выводит переменные как вывести его?