#pragma endregion int numer; int guess; int strzal = 0; public: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { numer = rand() % 100 + 1; liczbaBox->Enabled = true; } private: System::Void zgadnijBtn_Click(System::Object^ sender, System::EventArgs^ e) { try { guess = Int32::Parse(liczbaBox->Text); if (guessText = "Tak mało? Jak tak dalej pójdzie to nigdy nie zgadniesz tego numeru..."; strzal++; } else if (guess>numer) { czyZgadleslbl->Text = "Niestety nie trafiłeś!Przestrzeliłeś, próbuj dalej..."; strzal++; } else if (guess == numer) { czyZgadleslbl->Text = "To git"; strzal++; czyZgadleslbl->Text = "W końcu Ci się udało!"; MessageBox::Show("Udało Ci się odgadnąć liczbę! Zajęło Ci to " + strzal.ToString() + " prób.", "Gratulacje", MessageBoxButtons::YesNo, MessageBoxIcon::Information); } } catch (FormatException^ e) { } } private: System::Void textBox1_TextChanged(System::Object^ sender, System::EventArgs^ e) { try { guess = Int32::Parse(liczbaBox->Text); } catch (FormatException^ e) { } } private: System::Void powrotBtn_Click(System::Object^ sender, System::EventArgs^ e) { Close(); } }; }