返回列表 發帖
score=int(input("請輸入你的成績: "))
print(score)

TOP

  1. n=int(input("請輸入字串:"))
  2. print("你剛剛輸入的是"+str(n))
  3. print("n+10=",str(n+10))
複製代碼

TOP

  1. h=input("Please enter a number:")
  2. print("You entered"+h)
  3. print("The number plus 10 is "+str(int(h)+10))
複製代碼

TOP

  1. a=input("請輸入數學成績:")
  2. b=input("請輸入國語成績:")
  3. c=int(a)/2+int(b)/2
  4. print("你的成績平均是"+str(c)+"分")
複製代碼

TOP

返回列表