Vb Net Lab Programs For Bca Students Fix -

Generate the Fibonacci series or factorial of a number.

' Logic to find the largest number If num1 > num2 And num1 > num3 Then Label1.Text = "The Largest Number is: " & num1 ElseIf num2 > num1 And num2 > num3 Then Label1.Text = "The Largest Number is: " & num2 Else Label1.Text = "The Largest Number is: " & num3 End If End Sub