//Add comments here that explain the Sqrt method
private void btnSqrt_Click(object sender, EventArgs e)
{
double num = double.Parse(textDisplay.Text);
if (num >= 0)
{
textDisplay.Text = SquareRoot(num).ToString();
}
else
{
MessageBox.Show("Number must be positive", "Error Message");
textDisplay.Text = "0";
}
}
//Add comments here that explain the Sqrt function
//What are the arguments and the return value(s)
//To Do – Add the math sqrt method.
private double SquareRoot(double x)
{
textDisplay.Text = Convert.ToString(Math.Sqrt(Convert.ToDouble(x)));
}
私は数学的なsqrtメソッドに問題があります。 この質問については、私は最初の行を与えています
私的double SquareRoot(double x) 私は方法を書こうとしましたが、私はSquareRootの下に赤い線があります。 私の方法で何が間違っていますか?数学関数sqrt。何が欠けていますか
private void SquareRoot(double x)
を返却する必要があります!確かに、あなたのメソッドは、あなたの署名で約束した戻り値を逃していると言いました。 – TaW