Skip to content

Commit

Permalink
Update Form1.cs
Browse files Browse the repository at this point in the history
Signed-off-by: Yann <30565751+SeenKid@users.noreply.github.com>
  • Loading branch information
SeenKid authored Nov 23, 2022
1 parent 3692137 commit 74016d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions EquationSolver/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ private void Valider_Click(object sender, EventArgs e)

if (string.IsNullOrEmpty(answer.Text))
{
answer.Text = "Calcul impossible";
answer.Text += "Calcul impossible";
}
else
{
answer.Text = "\r\nCalcul impossible";
answer.Text += "\r\nCalcul impossible";
}

return;
Expand All @@ -136,10 +136,10 @@ private void Valider_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(answer.Text))
{
answer.Text = "Calcul impossible";
answer.Text += "Calcul impossible";
} else
{
answer.Text = "\r\nCalcul impossible";
answer.Text += "\r\nCalcul impossible";
}

string message = "Le calcul pour la valeur de Y est impossible !";
Expand Down

0 comments on commit 74016d3

Please sign in to comment.