猫史档案馆


【Python作品分享】计算器

用户:星空吞噬星空吞噬查看:0 回复:0 评论:0 创建时间:2023-04-01T22:20:43


【作品展示】

center_image

 

【作品介绍】

加按一下1

减按两下2

乘按三下3

除按四下4

 

【作品源代码】

import math


#开始进入Python的世界
print('请选择运算,1:加,2:减,3:乘,4:除')
if (int(input()) == 1):
    print('选择的运算是加法')
    print('和是', (float(input()) + float(input())))
elif (int(input()) == 2):
    print('选择的运算是减法')
    print('差是:', (float(input()) - float(input())))
elif (int(input()) == 3):
    print('选择的运算是乘法')
    print('积是:', (float(input()) * float(input())))
elif (int(input()) == 4):
    print('选择的运算是除法')
    print('商是:', (float(input()) / float(input())))
else:
    print('没有符合的运算')

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页