Advertisement
krassy_11

Factorial

Nov 19th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. using System;
  2.  
  3. class Factorial
  4. {
  5.     static void Main()
  6.     {
  7.         int n = int.Parse(Console.ReadLine());
  8.  
  9.         int fact = 1;
  10.  
  11.         do
  12.         {
  13.             fact = fact * n;
  14.             n--;
  15.         }
  16.         while (n > 1);
  17.  
  18.         Console.WriteLine(fact);
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement