“Automatyczna tabela śledzenia” Kod odpowiedzi

Automatyczna tabela śledzenia

2

3
4
5
6
7
8
90
'
0
7

5
th
g

Clumsy Cassowary

Automatyczna tabela śledzenia

for x in range(1,6):
    for y in range(1,6-x+1):
        print(" ",end=" ")
    for z in range(x):
        print(x,end=" ")
    print(" ")
Disgusted Dingo

Automatyczna tabela śledzenia

num = 7

factorial = 1 
# check if the number is negative, positive or zero
if num < 0:
  print("sorry, factorial does not exist for negative numbers")
  elif num == 0:
    print("the factorial of 0 is 1")
    else:
      limit = num-1
      for i in range(1, limit):
        factorial = factorial*i
        print("the factorial of",num,"is",factorial)
Agreeable Alligator

Odpowiedzi podobne do “Automatyczna tabela śledzenia”

Pytania podobne do “Automatyczna tabela śledzenia”

Więcej pokrewnych odpowiedzi na “Automatyczna tabela śledzenia” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu