Advertisement
Guest User

new

a guest
Jun 16th, 2022
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. cun = 0
  2. x = []
  3. while cun < 10:
  4.     a = int(input("整数 : "))
  5.     x.append(a)
  6.     cun += 1
  7. y = max(x)
  8. print(y)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement