Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created April 6, 2020 09:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Celia-code/0059c137998240b136cc8f80d50c69ff to your computer and use it in GitHub Desktop.
Save Celia-code/0059c137998240b136cc8f80d50c69ff to your computer and use it in GitHub Desktop.
while循環
member = 0
amount = 0
total = 0
while amount != -1:
member += 1
total += amount
amount = int(input("請輸入第 %d 會員消費金額:" % member))
average = total/(member - 1)
print("會員總消費金額: %d, 人均消費金額: %5.2f" % (total, average))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment