用户:鸽子ECYRAZ查看:0 回复:1 评论:0 创建时间:2019-07-08T18:45:41
【作品展示】

【作品介绍】
这是我python的第一个秩序欧品谢谢大家关注
【作品源代码】
a=int(input())
b=int(input())
c=int(input())
d=((a*b)*c)
print(d)
【提示】
部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:
https://python.codemao.cn不需要外部插件就能运行,也需要检测一下长宽高是不是为负数,我之前也写过,好像和你不一样
a = float(raw_input())
b = float(raw_input())
c = float(raw_input())
if a < 0:
print ("......")
elif b < 0:
print(".....")
elif c < 0:
print (".....")
else:
print("体积是",(a*b)*c)
点赞0
评论