1. 程式人生 > >判斷錄取情況

判斷錄取情況

研究生 判斷 並且 英語 計算 put input 數學 split()

某校計算機專業今年錄取研究生的要求是:政治、英語每門課成績不低於60分,數學和專業課不低於90分,總成績不低於310分。並且規定:在滿足單科以及總成績最低要求的基礎上,350分以上(含350分)為公費(Gongfei),310分~349分為自費(Zifei)。

請編程判斷考生的錄取情況。

N=int(raw_input())
for i in range(N):
a,b,c,d=map(int,raw_input().split())
s=a+b+c+d
if a<60 or b<60 or c<90 or d<90:
print "Fail"
else:
if s<310:
print "Fail"
else:
if 310<=s and s<=349:
print ‘Zifei‘
else:
print ‘Gongfei‘

判斷錄取情況