求1~10之间个位数不为2、3、4、7并且不能被3整除的整除之和并循环100次的代码
时间: 2023-06-02 17:06:03 浏览: 116
编写一个程序,使用while循环计算1~1000之间能被3和7同时整除的整数之和
好的,以下是符合您要求的代码:
```python
sum = 0
count = 0
for i in range(1, 101):
for j in range(1, 11):
if j % 3 != 0 and j % 10 not in [2, 3, 4, 7]:
sum += j
count += 1
if count == i:
break
print("第 %d 次循环的结果为:%d" % (i, sum))
sum = 0
count = 0
```
请问还有其他需要我回答的问题吗?
阅读全文