Program (1).cs 680 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ConsoleApp2
  7. {
  8. internal class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. long fact = 1;
  13. int h1 = 15; // Факториал какого числа.
  14. if (fact == 0)
  15. {
  16. Console.WriteLine(1);
  17. }
  18. else
  19. {
  20. for (int i = 1; i <= h1; i++)
  21. {
  22. fact *= i;
  23. }
  24. Console.WriteLine(fact);
  25. Console.ReadKey();
  26. }
  27. }
  28. }
  29. }