有程序段如下:
private void button1 _Click(object sender, EventArgs e)
{
int n=10,a b;
a=~n;
a++;
b=-n;
textBox1.Text=Convert.ToString(a+b);
}
程序运行后,单击窗口中的buttonl按钮,在文本框textBox1中显示的内容是()。
有程序段如下:
private void button1 _Click(object sender, EventArgs e)
{
int n=10,a b;
a=~n;
a++;
b=-n;
textBox1.Text=Convert.ToString(a+b);
}
程序运行后,单击窗口中的buttonl按钮,在文本框textBox1中显示的内容是()。
【正确答案】:-20
Top