我是編程新手,我試圖製作一個簡單的計算器,但使用單選按鈕作爲+ - * /按鈕。該表單有兩個文本框供用戶使用,其間有單選按鈕和用於答案的文本框。此代碼有什麼問題:單選按鈕其他如果
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int itextBox1 = 0;
int itextBox2 = 0;
int itextBox3 = 0;
itextBox1 = Convert.ToInt32(textBox1.Text);
itextBox2 = Convert.ToInt32(textBox2.Text);
if (radioButton1.Checked)
{
itextBox3 = itextBox1 + itextBox2;
}
else if (radioButton2.Checked)
{
itextBox3 = itextBox1 - itextBox2;
}
else if (radioButton3.Checked)
{
itextBox3 = itextBox1 * itextBox2;
}
else if (radioButton4.Checked)
{
itextBox3 = itextBox1/itextBox2;
}
}//void
}//class
你不這樣做對你的成績東西,一旦你計算。你只是將它粘在函數的局部變量中。 –
爲什麼你使用單選按鈕而不是普通的按鈕?一個真正的計算器有正常的按鈕... –