Write the code to read the name of a baseball team the


Write the code to read the name of a baseball team, the number of games won, and the number of games lost, and display the name of the team and the percentage of games won. The form will contain 3 labels, 3 text inputs boxes, a btnCompute, and a text box set to nothing for to display the output. PLEASE keep the code as simple as possible, since I am just learning to write code. Here is what I have, but I'm not sure if its correct, and this is as far as I have gotten. Thanks Private Sub btnCompute_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn.Compute.Click Dim Team, won, lost As Double won = CDbl(txtWon.Text) lost = CDbl(txtLost.Text) Team = CDbl(txtTeam.Text) (percent = won / (won + lost)) End Sub

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: Write the code to read the name of a baseball team the
Reference No:- TGS0568863

Expected delivery within 24 Hours