Commit b5177867 by BellCodeEditor

save project

parent b258abf2
Showing with 20 additions and 0 deletions
import random
list=[90,92,99,98,94,9,77]
liss=0
bbb=int(random.choice(list))
aaa=int(random.choice(list))
ccc=int(random.choice(list))
if bbb>aaa or bbb>ccc:
liss=1
if aaa>bbb or aaa>ccc:
liss=2
if ccc>aaa or ccc>bbb:
liss=3
if liss==1:
print(bbb)
if liss==2:
print(aaa)
if liss==3:
print(ccc)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment