Files
inf-kswo/IO/Zufall Not quite.py
Janis Hutz ede0ee318b Format
There really is no hope of making this code even half-way decent without
spending the time to rewrite them all properly. Don't want to do any of
that
2025-11-03 17:08:35 +01:00

11 lines
125 B
Python
Executable File

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)