#程式集訓 F001: 兩數相加
'''
F001: 兩數相加
'''
n=0
while n==0:
while True:
try:
c1,c2=(input("請輸入 A ,B 二數 : (A=999 離開) ").split())
break
except ValueError:
print ('這是不合法的輸入. 請再輸入一次...')
continue
if float(c1)==999: #exit
n=1
c1=float(c1)
c2=float(c2)
c=c1+c2
print("A=",'{:6.2f}'.format(c1),"與 B=",'{:6.2f}'.format(c2),"相加後",'{:6.2f}'.format(c))
================== RESTART: D:\程式語言 Python 入門\程式集訓\F001.py ==================
請輸入 A ,B 二數 : (A=999 離開) 12.3 34.5
A= 12.30 與 B= 34.50 相加後 46.80
請輸入 A ,B 二數 : (A=999 離開) 199 7772
A= 199.00 與 B= 7772.00 相加後 7971.00
請輸入 A ,B 二數 : (A=999 離開) 999 0
A= 999.00 與 B= 0.00 相加後 999.00
>>>
沒有留言:
張貼留言