December 31, 2017
Write a VB(visual basic 6.0) program to find factorial number
Write a VB(visual basic 6.0) program to find factorial number
Private Sub Command1_Click() Dim j, i as Integer i = CInt(Text1.Text) Label2.Caption = facts(i) End Sub Private Function facts(i) F = 1 For j = 1 To i F = F * j facts = F Next j End Function
2 Comments
Nice… It is simpler than I thought..
Super. I prepared easy way