total = 0 x = 1 y = 2 while y <= 100: total += x * y x += 2 y += 2 print(total) 相关文章: 2022-12-23 2021-10-20 2021-07-25 2022-12-23 2021-09-14 2022-12-23 2021-10-05