gpt4 book ai didi

java - 将 100 到 1000 之间可被 5 和 6 整除的数字相加

转载 作者:行者123 更新时间:2023-11-30 04:58:39 25 4
gpt4 key购买 nike

我的程序是正确的,只是最后程序必须输出两个\n\n。就这样。然而,仅在最后一行。每十组,它应该只输出一个 \n。程序应该是这样的:

1   2   0       1   5   0       1   8   0       2   1   02   4   0       2   7   0       3   0   0       3   3   03   6   0       3   9   0  \n   4   2   0       4   5   04   8   0       5   1   0       5   4   0       5   7   06   0   0       6   3   0       6   6   0       6   9   0  \n7   2   0       7   5   0       7   8   0       8   1   08   4   0       8   7   0       9   0   0       9   3   09   6   0       9   9   0  \n  \n

This is my code.

import java.util.Scanner;

public class Exercise4_10 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int count = 1;
for (int i = 100; i <= 1000; i++) {
if (i%5==0 && i%6==0)
System.out.print((count++ % 10 != 0) ? i + " ": i + "\n" );
}
}
}

最佳答案

在 main 的右大括号之前添加此内容:

System.out.println("");
}

关于java - 将 100 到 1000 之间可被 5 和 6 整除的数字相加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7681475/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com