有程序段如下:
private void button1_ Click(object sender, EventArgs e)
{
int a=3, b=8, c=5, m;
if(a>b)m=a;
else m=b;
if(c>m)m=c;
textBox1.Text=m.ToString();
}
程序运行后,单击窗口中的button1按钮,在文本框textBox1中显示的内容是()。
有程序段如下:
private void button1_ Click(object sender, EventArgs e)
{
int a=3, b=8, c=5, m;
if(a>b)m=a;
else m=b;
if(c>m)m=c;
textBox1.Text=m.ToString();
}
程序运行后,单击窗口中的button1按钮,在文本框textBox1中显示的内容是()。
【正确答案】:8
Top