我在Visual Basic中创建了一个四函数计算器,它也有平方根。但是,我正在寻求改进它,以便用户可以输入立方根,第四根,第五根等。我该怎么做?我想我有点想要一个公式来计算它。
答案 0 :(得分:2)
这是一个非常简单的示例,向您展示如何执行此操作:
Dim number As Double = Double.Parse(txtNumber.Text)
Dim root As Double = Double.Parse(txtRoot.Text)
' Calculate the root.
Dim result As Double = Math.Pow(number, 1 / root)
txtResult.Text = result.ToString()
' Check the result.
Dim check As Double = Math.Pow(result, root)
txtCheck.Text = check.ToString()
和链接(按流行需求回复): http://www.vb-helper.com/howto_net_find_nth_root.html