Upload code

This commit is contained in:
2025-01-20 19:40:14 +01:00
parent 71625e3e41
commit 07809d7d77
66 changed files with 8917 additions and 0 deletions

10
IO/Zufall Not quite.py Executable file
View File

@@ -0,0 +1,10 @@
import time
a = 5
c = 1
m = 32
x = int(time.time()) % m
for i in range(10):
x = (a*x + c) % m
print(x)