请教大侠们:这两个程序哪里错了啊,应该怎么改?大家讨论一下啊!
? 1.窗体上有一个文本框(名称为textBox1)和一个命令按钮(名称为button1),单击命令按钮后,文本框中显示的内容为“2330”。请改正以下程序中的错误:? private void button1_Click(object sender,EventArgs e)
? {
? int [,] a; int [,] a=new int[10,10];?
int i,j;
? for(i=3;i<7;i++)
? for(j=4;j<7;j++)
? a[i,j]=3*i+2*j;
? textBox1.Text=a[5,4]+a[6,6];
? }textBox1.Text=a[5,4].ToString()+a[6,6].ToString();
2.有一个窗体,如图,它可以完成两个操作数的加法和减法运算,当单击“+”单选按钮时,计算两操作数的和,并把结果显示在“结果”栏上;当单击“-”单选按钮时,计算两个操作数的差,并把结果显示在“结果”栏中,(注:两个单选按钮共用一个事件处理程序)。请改正以下程序中的错误:
? private void radioButton_CheckedChanged(object sender, EventArgs e)
? { RadioButton radio =(RadioButton) sender;
? RadioButton radio = sender;
? double r = 0;
? switch (radio.Text)
? { r = double.Parse(textBox1.Text) +
? double.Parse(textBox2.Text);
? case "+":
? r =textBox1.Text +textBox2.Text;
? break;
? case "-":
? r = textBox1.Text - textBox2.Text;
? break; r = double.Parse(textBox1.Text) –
? double.Parse(textBox2.Text);? }
? label4.Text = r.ToString();
? }
[[italic] 本帖最后由 sxp571 于 2008-1-5 16:03 编辑 [/italic]]