私はこの問題に直面し、それを修正しようとしましたが、あなたの助けが必要です..これは私のコードです:
#pragma endregion
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
y=Convert::ToInt16(textBox1->Text);
c=Convert::ToInt16(textBox3->Text);
a=Convert::ToDouble(rand() % y);
b=Convert::ToDouble(rand() % c);
textBox2->Text = Convert::ToString(a);
textBox4->Text = Convert::ToString(b);
x1=0;
x2=0;
do
{
trafficlight(a,b,1,2);
}while(i==0);//here is my problem i need condition to make the while loop working while the program is running
ボタンをクリックすると、前のコードなしでwhileループにジャンプし、前のコードが機能し、プログラムの実行中にwhileループが機能するように条件付けする必要があります..