必須標準答案么?
score = 85
S = score
if S >= 90:
? ? print 'excellent'
elif S >= 80:
? ? print 'good'
elif S >= 60:
? ? print 'passed'
else:
? ? print 'failed'
score = 85
S = score
if S >= 90:
? ? print 'excellent'
elif S >= 80:
? ? print 'good'
elif S >= 60:
? ? print 'passed'
else:
? ? print 'failed'
2015-04-16
舉報
2016-09-28
score = 85
if score >=90:
? ? print 'excellent'
elif score >=80:
? ? print 'good'
elif score >= 60:
? ? print 'passed'
else:
? ? print 'failed'
2015-04-16
右邊有good了但是過不了啊0.0