-1
print("this program will calculate the area")
input("[Press any key to start]")
width = int(input("enter width"))
while width < 0 or width > 1000:
print ("please chose a number between 0-1000")
width = int(input("enter width"))
height = int(input("Enter Height"))
while height < 0 or height > 1000:
print("please chose a number between 0-1000")
widht = int(input("Enter Height"))
area = width*height
print("The area is:",area
消息我添加了一個錯誤消息用於輸入數字更低或更高然後說明,但是如果可能的話我想,如果他們輸入來顯示錯誤消息給用戶信或根本沒有。Python-整數輸入,誤差用於輸入字母
好的,所以你需要編寫一些代碼來做到這一點。這裏沒有。 – 2013-03-08 00:38:20
第15行:您拼寫的「高度」錯誤爲寬度,但仍然錯誤。 – ApproachingDarknessFish 2013-03-08 00:50:40