鱼C论坛

 找回密码
 立即注册
查看: 1344|回复: 3

[已解决]2

[复制链接]
发表于 2020-9-20 12:42:41 | 显示全部楼层 |阅读模式
1鱼币
想要右边的一直查询,按下e结束
我这个一直是B


x=int(input('please a num:'))
while x!='e':
    if 0<=x<=100:
        if x==100:
            print('S')
        else:
             if x>=90:
                print('A')
             else:
                if x>=80:
                    print('B')
                else:
                    if x>=60:
                        print('C')
                    else:
                        print('D')

    else:
        print('input error')


"""score = input("请输入你的分数:")
score = int(score)

if score < 60:
    print("D")
   
if 60 <= score < 80:
    print("C")

if 80 <= score < 90:
    print("B")

if 90 <= score < 100:
    print("A")

if score == 100:
    print("S")"""
最佳答案
2020-9-20 12:42:42
循环里加入input
x=input('please a num:')
while x!='e':
    x=int(x)
    if 0<=x<=100:
        if x==100:
            print('S')
        else:
             if x>=90:
                print('A')
             else:
                if x>=80:
                    print('B')
                else:
                    if x>=60:
                        print('C')
                    else:
                        print('D')
        x = input('please a num:')
    else:
        print('input error')
        x = input('please a num:')
else:
    print('退出')
if else.png

最佳答案

查看完整内容

循环里加入input
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-20 12:42:42 | 显示全部楼层    本楼为最佳答案   
循环里加入input
x=input('please a num:')
while x!='e':
    x=int(x)
    if 0<=x<=100:
        if x==100:
            print('S')
        else:
             if x>=90:
                print('A')
             else:
                if x>=80:
                    print('B')
                else:
                    if x>=60:
                        print('C')
                    else:
                        print('D')
        x = input('please a num:')
    else:
        print('input error')
        x = input('please a num:')
else:
    print('退出')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-20 13:00:41 | 显示全部楼层
楼上说的对。不过可以再美观一点。
x = input('please a num:')
while x != 'e':
    x = int(x)
    if x < 0 or x > 100:
        print('input error')
    elif x == 100:
        print('S')
    elif x >= 90:
        print('A')
    elif x >= 80:
        print('B')
    elif x >= 60:
        print('C')
    else:
        print('D')
    x = input('please a num:')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-9-20 14:37:00 | 显示全部楼层

nb
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 15:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表