a005.
Eva 的回家作業
--
POJ
| From: [36.226.245.215] |
發表日期
:
2021-02-16 21:11
- 宣告t的變數
- 使用while迴圈來規定行數
- 在回圈內input 4個變數
- 用if else 判斷 等差 還是 等比
- 記得回圈內 t=t-1 否則會無限迴圈
t=int(input())
while ( t > 0 ):
a,b,c,d=map(int,input().split())
if (d-c == c-b): print(a,b,c,d,b-a+d,"\n")
else:
print(a,b,c,d,d*b/a,"\n")
t=t-1