summaryrefslogtreecommitdiff
path: root/progs/a940.py
blob: 622b2e30a98457219ae6a614644ecf9e29d1dc87 (plain)
1
2
3
4
5
6
7
def last_Digit_Factorial(n): 
    if (n == 0): return 1
    elif (n <= 2): return n  
    elif (n == 3): return 6
    elif (n == 4): return 4 
    else: 
      return 0