宏i


私信TA

用户名:dotcpp0701289

访问量:209

签 名:

等  级
排  名 2025
经  验 2502
参赛次数 0
文章发表 5
年  龄 0
在职情况 学生
学  校 GZLG
专  业

  自我简介:

inver = input().split()
inver = inver[::-1]
def arithmetic(inver):
    if inver:
        alphabet = inver.pop()
        if alphabet == '+':
            return arithmetic(inver) + arithmetic(inver)
        elif alphabet == '-':
            return arithmetic(inver) - arithmetic(inver)
        elif alphabet == '*':
            return arithmetic(inver) * arithmetic(inver)
        elif alphabet == '/':
            return arithmetic(inver) / arithmetic(inver)
        return float(alphabet)
    else:
        pass
print('%.6f'%arithmetic(inver))


 

0.0分

0 人评分

  评论区

  • «
  • »