Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cun = 0
- x = []
- while cun < 10:
- a = int(input("整数 : "))
- x.append(a)
- cun += 1
- y = max(x)
- print(y)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement