add my key #134

Merged
DictXiong merged 3 commits from shw8 into main 2025-09-16 17:59:06 +08:00
Showing only changes of commit 6b11634589 - Show all commits

12
test1 Normal file
View File

@ -0,0 +1,12 @@
import time
a = int(input())
while a != 1 :
if a % 2 == 0:
a = a/2
print(a)
else :
a = 3*a + 1
print(a)
time.sleep(0.5)
else:
print(a)