Skip to content

Instantly share code, notes, and snippets.

@soheil-moonesi
Created January 31, 2024 06:25
Show Gist options
  • Save soheil-moonesi/de3c12f0a12e13fdd1ee459491198cc9 to your computer and use it in GitHub Desktop.
Save soheil-moonesi/de3c12f0a12e13fdd1ee459491198cc9 to your computer and use it in GitHub Desktop.
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