题解 | #牛牛的绩点#

牛牛的绩点

https://www.nowcoder.com/practice/de8bc3e736164786b07a4dd64ed172f7

weight_table = {
    'A': 4,
    'B': 3,
    'C': 2,
    'D': 1,
    'F': 0,
}

weighted_score = 0
raw_score = 0

# the interesting part of this Question is to take 2 input one by one.
while True:
    weight = input()
    if weight == 'False':
        break
    else:
        score = int(input())
        weighted_score += weight_table[weight] * score
        raw_score += score

res = '{:.2f}'.format(weighted_score/raw_score)
print(res)

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务