乙個簡單的計算器

2021-10-01 18:42:01 字數 1605 閱讀 4150

乙個非常簡單的計算器

來自sololearn

**:只能進行單一計算

while true:

print

("設定"

)print

("enter '增加' to 增加 two numbers"

)print

("enter '減去' to 減去 two numbers"

)print

("enter '相乘' to 相乘 two numbers"

)print

("enter '除去' to 除去 two numbers"

)print

("enter '退出' to 結束 the program"

) user_input =

input

("請輸入需要使用的算數: "

)if user_input ==

"退出"

:break

elif user_input ==

"增加"

: num1 =

float

(input

("請輸入第乙個數: "))

num2 =

float

(input

("請輸入第二個數: "))

result =

str(num1 + num2)

print

('這兩個相加的結果是'

+result)

elif user_input ==

"減去"

: num1 =

float

(input

("請輸入第乙個數: "))

num2 =

float

(input

("請輸入第二個數: "))

result =

str(num1 - num2)

print

('這兩個相減的結果是'

+result)

elif user_input ==

"相乘"

: num1 =

float

(input

("請輸入第乙個數: "))

num2 =

float

(input

("請輸入第二個數: "))

result =

str(num1 * num2)

print

('這兩個相乘的結果是'

+result)

elif user_input ==

"除去"

: num1 =

float

(input

("請輸入第乙個數: "))

num2 =

float

(input

("請輸入第二個數: "))

result =

str(num1 / num2)

print

('這兩個相除的結果是'

+result)

else

:print

("無法識別的輸入"

)

結束。

製作乙個簡單的計算器

coding utf 8 time 2020 2 5 author wowilliam210 file calculator.py software pycharm import win32com.client class acalculator object def check num zsq f...

乙個極簡單的計算器

網上看到的計算器程式,再加上一些對於 號的處理,就完美了,例如輸入 3 6 8敲回車,立刻就列印出51,如果輸入3 6 8 則出錯,這兒需處理一下.import os while true dynamic input 輸入計算表示式 if dynamic cls try result eval dy...

QT實現乙個簡單的計算器

最近幾天在學習qt,在了解了訊號和槽機制 布局管理 還有一些控制項的使用後,便試著寫了乙個計算器,帶自定義的快捷鍵,剪貼簿 複製和貼上 的操作,有 選單欄 選擇 裡的功能還未實現,等啥時候有時間把它補上吧。還有許多不足和需要修改的地方,希望各位大牛能幫忙指出其中的問題,謝謝。下面就貼出我的 calc...