用python编写程序,输出1-100之间所有能被3整除,但是不能被5整除的数。(15分)
时间: 2023-11-18 19:03:23 浏览: 75
可以用以下代码实现:
for i in range(1, 101):
if i % 3 == 0 and i % 5 != 0:
print(i)
输出结果为:
3
6
9
12
18
21
24
27
33
36
39
42
48
51
54
57
63
66
69
72
78
81
84
87
93
96
99
希望能对您有所帮助!
相关问题
python编写程序,输出1-100之间所有能被3整除,但是不能被5整除的数(一行输出)
Sure, the answer to your question is:
```
for i in range(1, 101):
if i % 3 == 0 and i % 5 != 0:
print(i, end=" ")
```
This will output all the numbers between 1 and 100 that are divisible by 3 but not by 5.
用python编写程序,输出1-100之间所有能被3整除,但不能被5整除的数。提示:使用for循环,一行输出一个数。
以下是用 Python 编写的程序,输出 1-100 之间所有能被 3 整除,但不能被 5 整除的数:
```python
for i in range(1, 101):
if i % 3 == 0 and i % 5 != 0:
print(i)
```
输出结果如下:
```
3
6
9
12
18
21
24
27
33
36
39
42
48
51
54
57
63
66
69
72
78
81
84
87
93
96
99
```
阅读全文