Last active
October 6, 2015 13:57
-
-
Save ecmelkytz/3003544 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Class Form1 | |
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click | |
Dim sayi, z As Integer | |
sayi = 1 | |
If TextBox1.Text = 0 Then 'eğer girilen sayı 0 ise | |
TextBox2.Text = 1 'TextBox2'de 1 görüntüle | |
Else | |
For z = 1 To TextBox1.Text | |
sayi = sayi * z | |
Next | |
End If | |
TextBox2.Text = sayi | |
End Sub | |
End Class |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment