#20112: Python 差10分!


l1o2r3y4@gmail.com (lory Liu)

學校 : 不指定學校
編號 : 104674
來源 : [140.119.135.100]
最後登入時間 :
2023-03-05 22:52:59
a053. Sagit's 計分程式 -- Sagit's 教學題 | From: [27.246.232.135] | 發表日期 : 2019-12-03 16:37

程式碼在這!

不管縮排的話 只有第7個測資點沒過

想問問題出在哪ಥ_ಥ 

while(1):

try:

for a in input().split():

a=int(a)

if 0<=a<=10:

score=6*a

print(score)

elif 11<=a<=20:

score=60+2*(a-10)

print(score)

elif 21<=a<=30:

score=80+(a-20)

print(score)

elif a>=40:

score=100

print(score)

else:

continue

 

except:

break

 

 
#20736: Re:Python 差10分!


devil1004@livemail.tw (蘇彥儒)

學校 : 不指定學校
編號 : 115422
來源 : [223.138.229.13]
最後登入時間 :
2023-07-20 16:45:45
a053. Sagit's 計分程式 -- Sagit's 教學題 | From: [42.76.233.50] | 發表日期 : 2020-02-26 23:07

程式碼在這!

不管縮排的話 只有第7個測資點沒過

想問問題出在哪ಥ_ಥ 

while(1):

try:

for a in input().split():

a=int(a)

if 0<=a<=10:

score=6*a

print(score)

elif 11<=a<=20:

score=60+2*(a-10)

print(score)

elif 21<=a<=30:

score=80+(a-20)

print(score)

elif a>=40:

score=100

print(score)

else:

continue

 

except:

break

 

31~39 沒有判斷


 
ZeroJudge Forum