返回列表 發帖
  1. import math

  2. def test():
  3.     print('函式測試')
  4.    
  5. test()
  6.    
  7. def tri(a,b,):
  8.     print("畢氏定理求第三邊長:")
  9.     c=math.sqrt(a**2+b**2)
  10.     return c

  11. a=float(input())
  12. b=float(input())
  13. c=tri(a,b)

  14. print(f"{c:.2f}")   
複製代碼

TOP

返回列表