07-成绩分类

作者: pengwg | 来源:发表于2019-11-20 11:37 被阅读0次
    score = int(input('请输入你的成绩分数:'))
    
    if score >= 90:
        print('优秀')
    elif score >= 80:
        print('良好')
    elif score >= 70:
        print('良')
    elif score >= 60:
        print('及格')
    else:
        print('骚年,仍需努力')

    相关文章

      网友评论

        本文标题:07-成绩分类

        本文链接:https://www.haomeiwen.com/subject/yrqoictx.html