我尝试制作简单的蛮力算法。它工作正常。但我正在看这个视频
http://www.youtube.com/watch?v=v2xwfiggRYk&feature=relmfu
(时间 10:30)正如您在 textbox2 中看到的那样,可能性发生了变化。但在我的程序中。我创建 1323 作为密码,然后当我点击暴力时,我等了 5 秒,在 textbox2 中得到 99999,在 textbox3 中得到 1323。为什么我看不到textbox2 中的数字流与视频一样吗?
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
int a, b;
private void button1_Click(object sender, EventArgs e)
{
a = Convert.ToInt16(textBox1.Text);
}
private void button2_Click_1(object sender, EventArgs e)
{
for (int i = 0; i < 100000; i++)
{
textBox2.Text = "" + i;
if (a == i) textBox3.Text = "" + i;
}
}
}