文章

67

粉丝

207

获赞

29

访问

34.8k

头像
A + B 加强版 题解:跪求大佬,一直66%显示栈溢出
P1323 浙江大学机试题
发布于2024年10月9日 11:22
阅读数 199

while True:
        str = ["a"]*100
        str = list(input().split())
        sum = 0
        summax = 0
        count = 0
        index = 0
        for i in range(0,len(str)):
            if str[i] == "+":
                if sum ==0:
                    index += 1
                summax = summax + sum
                sum = 0
                count = 0
                continue
            if str[i] == "=":
                if sum == 0:
                    index += 1
                summax = summax + sum
                break
            if count !=0:
                    sum = sum * 10
            if str[i] == "one":
                count +=1#位
                sum+=1
            elif str[i] == "two":
                count +=1
                sum+=2
            elif str[i] == "three":
                count +=1
                sum+=3
            elif str[i] == "four":
                count +=1
                sum+=4
            elif str[i] == "five":...
登录查看完整内容


登录后发布评论

2 条评论
snake VIP
2024年10月9日 13:19

python刷题尽量加上try...except...

赞(0)

孙某人 : 回复 snake: 666,真的是这样的,一定要加上try...except...

2024年10月9日 14:36