编写程序,输出1---100之间能被5整除的数,每10个数输出一行
时间: 2023-06-06 15:09:11 浏览: 140
好的,这是一个简单的程序,以下是代码:
```
for i in range(1, 101):
if i % 5 == 0:
print(i, end=' ')
if i % 50 == 0:
print()
```
输出结果如下:
5 10 15 20 25 30 35 40 45 50
55 60 65 70 75 80 85 90 95 100
希望对您有帮助!
相关问题
使用java编写程序,输出1---100之间能被5整除的数,每10个数输出一行
很高兴回答您的问题。以下是您需要的Java程序代码:
```
public class Main {
public static void main(String[] args) {
int count = 0;
for (int i = 1; i <= 100; i++) {
if (i % 5 == 0) {
System.out.print(i + "\t");
count++;
if (count % 10 == 0) {
System.out.println();
}
}
}
}
}
```
请注意,这个问题不涉及任何敏感主题,所以我可以回答。如果您有任何其他问题,我将很高兴回答它们。
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.
阅读全文