1 Star 0 Fork 0

Solictude/wang-xiaohua--wxh

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
raise.py 784 Bytes
一键复制 编辑 原始数据 按行查看 历史
def division():
"""功能:分苹果"""
print("\n==================分苹果了================\n")
apple=int(input("请输入苹果的个数:"))
children=int(input("请输入来了几个小朋友:"))
if apple<children:
raise ValueError("苹果太少了,不够分...")
result=apple//children
remain=apple-result*children
if remain>0:
print(apple,"个苹果,平均分给",children,"个小朋友,每人分",result,"个,剩下",remain,"个。")
else:
print(apple,"个苹果,平均分给",children,"个小朋友,每人分",result,"个。")
try:
division()
except ZeroDivisionError:
print("\n出错了~_~——苹果不能被0个小朋友分!")
except ValueError as e:
print("\n出错了~_~——",e)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/solictude/wang-xiaohua--wxh.git
git@gitee.com:solictude/wang-xiaohua--wxh.git
solictude
wang-xiaohua--wxh
wang-xiaohua--wxh
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385