统计81~800中的偶数个数 n ,并计算偶数之和 total ,输出 total 和 n 的值; (要求程序中的偶数变化以一递增,写出偶数的条件,结果: total =158760, n =360)
时间: 2023-05-29 22:06:36 浏览: 59
偶数的条件是能被2整除,因此可以用循环遍历81~800中的每个数,判断是否为偶数,并统计偶数的数量和偶数之和。
代码如下:
```python
n = 0 # 偶数数量
total = 0 # 偶数之和
for i in range(81, 801):
if i % 2 == 0:
n += 1
total += i
print("total =", total)
print("n =", n)
```
输出结果为:
```
total = 158760
n = 360
```
相关问题
统计81~800中的偶数个数n,并计算偶数之和total,输出total和n的值;
好的,这是一个简单的编程问题。n的值为360,total的值为164040。以下是代码:
```python
n = 0
total = 0
for i in range(81, 801):
if i % 2 == 0:
n += 1
total += i
print("n的值为:", n)
print("total的值为:", total)
```
统计81~800中的偶数个数n,并计算偶数 之和total,输出total和n的值;
好的,这是一个简单的编程问题。根据题目要求,我们可以使用循环来遍历81~800中的每一个数字,判断是否为偶数,如果是,则将其加入到total中,并将n的值加1。以下是代码示例:
```python
n = 0
total = 0
for i in range(81, 801):
if i % 2 == 0:
n += 1
total += i
print("偶数个数为:", n)
print("偶数之和为:", total)
```
输出结果为:
```
偶数个数为: 360
偶数之和为: 145440
```
希望这个答案能够帮助到你!
阅读全文