0
讓計算器嘗試習慣使用Visual Studio在C#中進行編碼。我幾乎在那裏,但當我試圖按兩個符號(即**
)時,會在標題中顯示錯誤消息。我怎樣才能阻止這種情況的發生並阻止用戶輸入兩個符號?我試圖通過布爾人說false
或true
,但已經變得有點卡住了!在mscorlib.dll中發生未處理的異常類型'System.FormatException',卡住
namespace Calculator_Assignment
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
Boolean Decimalcick = true;
Boolean Plusclick = true;
Boolean Multiplyclick = true;
Boolean Devisionclick = true;
Boolean Subtractclick = true;
float num, ans;
int count;
private void Button_click(object sender, EventArgs e)
{
Button button = (Button)sender; //adds the numbers into the screen when clicked
Screen.Text = Screen.Text + button.Text;
Screen.ForeColor = Color.Red; //text that entered appears red
Decimalcick = true;
Plusclick = true;
Multiplyclick = true;
Devisionclick = true;
Subtractclick = true;
}
private void operatorclick(object sender, EventArgs e)
{
Button button = (Button)sender; //adds the symbols into the screen when clicked
Screen.Text = Screen.Text + button.Text; //all symbols are under button_click so i do not have to repeat the code over/
}
private void Clearclick(object sender, EventArgs e)
{
Screen.Clear(); //when clicked clears the screen
Result.Clear(); //when clicked clears the result
Decimalcick = true;
Plusclick = true;
Multiplyclick = true;
Devisionclick = true;
Subtractclick = true;
}
private void Decimalclick(object sender, EventArgs e)
{
Screen.Text = Screen.Text + "."; //adds decimal point to screen when/if clicked
Screen.ForeColor = Color.Red; //decimal point appears red
Decimalcick = false;
Plusclick = false;
Multiplyclick = false;
Devisionclick = false;
Subtractclick = false;
}
private void Closebtn_Click(object sender, EventArgs e)
{
this.Close(); // closes the application down
}
private void plusclick(object sender, EventArgs e) //addition
{
num = float.Parse(Screen.Text);
Screen.Clear(); //clears the screen of everything
Screen.Focus(); //textbox is focused upon when the screen is cleared
count = 1; //this counts the store case
Result.Text = num.ToString() + "+"; //this puts the text onto the top text box
Decimalcick = false;
Plusclick = false;
Multiplyclick = false;
Devisionclick = false;
Subtractclick = false;
}
private void multiplyclick(object sender, EventArgs e) //multiply
{
num = float.Parse(Screen.Text);
Screen.Clear(); //clears the screen of everything
Screen.Focus(); //textbox is focused upon when the screen is cleared
count = 3; //this counts the store case
Result.Text = num.ToString() + "*"; //this puts the text onto the top textbox
Decimalcick = false;
Plusclick = false;
Multiplyclick = false;
Devisionclick = false;
Subtractclick = false;
}
private void divideclick(object sender, EventArgs e) //divide
{
num = float.Parse(Screen.Text);
Screen.Clear(); //clears the screen of everything
Screen.Focus(); //textbox is focused upon when the screen is cleared
count = 4; //this counts the store case
Result.Text = num.ToString() + "/"; //this puts the text onto the lab
Decimalcick = false;
Plusclick = false;
Multiplyclick = false;
Devisionclick = false;
Subtractclick = false;
}
private void subtractclick(object sender, EventArgs e) //subtract
{
num = float.Parse(Screen.Text);
Screen.Clear(); //clears the screen of everything
Screen.Focus(); //textbox is focused upon when the screen is cleared
count = 2; //this counts the store case
Result.Text = num.ToString() + "-"; //this puts the text onto the label
Decimalcick = false;
Plusclick = false;
Multiplyclick = false;
Devisionclick = false;
Subtractclick = false;
}
private void equalsclick(object sender, EventArgs e)
{
switch (count) //initalising switch statement
{
case 1:
ans = num + float.Parse(Screen.Text);//Adding numbers
Result.Text = ans.ToString(); //this converts my answer from a float to a string
break;
case 2:
ans = num - float.Parse(Screen.Text); //Subtracting numbers
Result.Text = ans.ToString(); //float to a string
break;
case 3:
ans = num * float.Parse(Screen.Text); //Multiplying numbers
Result.Text = ans.ToString(); //float to a string
break;
case 4:
ans = num/float.Parse(Screen.Text); //Division of numbers
Result.Text = ans.ToString(); //float to a string
break;
default: //the default figure
break;
}
}
}
}
謝謝,但它仍然不滿意'num = float.Parse(Screen.Text);' –
您需要使用上述代碼檢查Screen.Text,與您的處理程序中的Result.Text完全相同。這在equalsclick(...)。 –
剛剛嘗試過,它仍然不喜歡'num = float.Parse(Screen.Text);'每次都會顯示這條消息:( –