總網頁瀏覽量

2017年12月1日 星期五

海龍公式

輸入三角形的三邊長,可幫你找到面積,若不能形成三角形,要再輸入一次!!!!!

程式碼(Python):

import time
i=0
while i==0 or p<=0:
      a=input("請輸入三角形第一個邊長 ==> ")
      b=input("請輸入三角形第二個邊長 ==> ")
      c=input("請輸入三角形第三個邊長 ==> ")
      a=eval(a);b=eval(b);c=eval(c)
      s=0.5*(a+b+c)
      p=s*(s-a)*(s-b)*(s-c)
      if p<=0:
            print("此三角形不存在,請重新輸入!!!!")
      i+=1
else:
      print("三角形面積為:",p**0.5)
time.sleep(5)

執行檔:(延遲5秒關閉)
https://drive.google.com/file/d/1OMVsM06XZDlebmMLuH7yRWzVLwRqZVi2/view?usp=sharing

沒有留言:

張貼留言