返回列表 發帖

[隨堂測驗] 七則運算 - 自行指定a與b的值

  1. a=int(input("指定a的值: "))
  2. b=int(input("指定b的值: "))

  3. print("a+b={}".format(a+b))
  4. print("a-b={}".format(a-b))
  5. print("a*b={}".format(a*b))
  6. print("a/b={}".format(a/b))
  7. print("a%b={}".format(a%b))
  8. print("a//b={}".format(a//b))
  9. print("a**b={}".format(a**b))
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表