This commit is contained in:
Chizuui
2025-11-27 00:38:38 +07:00
parent 5444efab13
commit 1795fa1c2f
81 changed files with 1893 additions and 0 deletions

9
Tugas/c.py Normal file
View File

@@ -0,0 +1,9 @@
def func(n):
if n == 1:
return 1
else:
return func(n - 1) + func(n - 2)
for i in range(5):
print(func(i), end=" ")