```python
使用循环求1到10的和与乘积
计算和
total_sum = 0
for i in range(1, 11):
total_sum = i
计算乘积
total_product = 1
for i in range(1, 11):
total_product *= i
输出结果
print(f"1到10的和为:{total_sum}")
print(f"1到10的乘积为:{total_product}")
```
这段代码使用了两个循环,分别计算了1到10的和与乘积。我们初始化 `total_sum`(和)为0,然后使用 `for` 循环遍历从1到10的所有数字,并将它们加起来。同样地,我们初始化 `total_product`(乘积)为1,然后使用另一个 `for` 循环遍历从1到10的所有数字,并将它们相乘起来。
文章已关闭评论!
2024-11-26 13:43:23
2024-11-26 13:42:08
2024-11-26 13:41:01
2024-11-26 13:39:51
2024-11-26 13:38:23
2024-11-26 13:37:07
2024-11-26 13:35:57
2024-11-26 13:34:51