我想使用函数制作一种英镑到欧元的转换器。我希望系统做什么,当您在文本框中输入您的号码并按转换时,我希望标签中的欧元转换号码显示出来。
我相信这是通过告诉系统将输入的任何数字乘以 1.34509 的转换率来完成的。
但我不认为我做得对。
Protected Sub btnGo_Click(sender As Object, e As EventArgs) Handles btnGo.Click
End Sub
Function Convert(txtPound As Decimal) As Decimal
'declare variable to store answer
Dim Converter As Decimal
'calculate the Answer
Converter = Convert(txtPound * 1.34509)
'return the Answer
Return Converter
End Function
End Class