python实现一个简单的供销存系统

题目描述

已知阳光公司为一商贸流通企业,请使用python为其设计一个简单的供销存系统。

1.使用input函数获取期初库存数量,并赋值给期初库存量。

2.使用input函数获取采购数量,并赋值给采购数量。

3.使用input函数获取销售数量,并赋值给销售数量。

要求:如果单位库存价值为¥12.5/个,计算出年末库存数量及年末库存价值,并输出结果。

实现代码

initial_stock = int(input("请输入期初库存数量:"))
purchase_quantity = int(input("请输入采购数量:"))
sales_quantity = int(input("请输入销售数量:"))

unit_price = 12.5  # 单位库存价值(元/个)

ending_stock = initial_stock + purchase_quantity - sales_quantity
ending_value = ending_stock * unit_price

print("年末库存数量:", ending_stock)
print("年末库存价值:¥", ending_value)

你可以运行这段代码,并根据提示输入相应的数值,程序将计算出年末库存数量及年末库存价值并输出结果。

© 版权声明
THE END
喜欢就支持一下吧
点赞11赞赏 分享