gpt4 book ai didi

Java for循环打印一年中的每个月

转载 作者:行者123 更新时间:2023-12-01 07:20:26 25 4
gpt4 key购买 nike

下面的java代码将从1开始打印数字1-10。我如何使用相同的代码结构只打印一次一年中的所有月份,例如一月、二月、三月等?

public class s {
public static void main(String[] args) {
for(int i = 1; i <= 10; i++) {
System.out.println(i);
}
}
}

最佳答案

如果你想中继java api,请使用:

public static void main(final String[] args) {
// java 8
Arrays.stream(Month.values())
.forEach(System.out::println);

// java < 8
for (final Month month : Month.values()) {
System.out.println(month);
}
}

关于Java for循环打印一年中的每个月,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39903266/

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