What is the output when the button is clicked?
Extracted text: Private Sub btnDetermine_click (...) Handles btnDetermine.click Dim numone, numTwo, numThree, numLowest As Double numone = CD61 (txtone.Text) numTwo = CDbl (txtTwo.Text) numThree CDbl (txtThree.Text) numLowest = FindLowest (numone, numTwo, numThree) txtLowest.Text = cstr (numLowest) End Sub Function FindLowest (x As Double, y As Double, z As Double) As Double 'Find the lowest of three numbers denoted by x, y, and z Dim lowest As Double lowest = x If y > lowest Then lowest = y End If If z > lowest Then lowest = z End If Return lowest End Function
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here