Created
January 31, 2024 06:25
-
-
Save soheil-moonesi/de3c12f0a12e13fdd1ee459491198cc9 to your computer and use it in GitHub Desktop.
This file contains 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
int i=5; | |
int factorial = 1; | |
do | |
{ | |
Console.WriteLine("yek bar ejra mishe"); | |
factorial *= i; | |
i--; | |
} | |
while (i > 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment