摘要: 1 # python ans = 0 for i in range(1000): if i % 3 == 0 or i % 5 == 0: ans += i print(ans) 2 # python ans = 0 a = 0 b = 1 for i in range(10000000): c = 阅读全文
posted @ 2025-03-14 19:26 YipChip 阅读(131) 评论(0) 推荐(0)