1 Star 0 Fork 0

巧克力ovo/PythonLearn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
2-2.py 244 Bytes
一键复制 编辑 原始数据 按行查看 历史
wlt 提交于 2025-03-12 18:35 +08:00 . 2change
def count_red_packets(n):
count = 0
for i in range(1, n):
if i % 3 == 0 or i % 8 == 0 or i % 38 == 0:
count += 1
return count
n = 2025
result = count_red_packets(n)
print("老板总共得发 {result} 个红包")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chocolate-ovo/python-learn.git
git@gitee.com:chocolate-ovo/python-learn.git
chocolate-ovo
python-learn
PythonLearn
master

搜索帮助