1. 该程序可以依据原始成绩,判断证书等级,85(含)分以上为Great,70(含)至85为Good,60(含)至70为Medium,60分以下为Bad。

G=int(input(‘请输入原始成绩:’))

If

print(‘Great’)

elif G<85 and G>=70:

print(‘Good’)

print(‘Medium’)

else:

print(‘Bad’)

【考点】
分支结构程序设计与分析;
【答案】

您现在未登录,无法查看试题答案与解析。 登录
填空题 普通
变式训练
拓展培优
换一批