gpt4 book ai didi

java - 限制Java中的最大字符输出?

转载 作者:行者123 更新时间:2023-11-30 07:21:00 26 4
gpt4 key购买 nike

我无法将此循环的输出格式化为每行仅 15 个字符。有人可以帮忙吗?

public class ASCII {

public static void main(String[] args) {

for (int ascii = 43; ascii <= 120; ascii++) {
System.out.print((char)ascii + " ");
}

}

}

最佳答案

这将实现:

for (int ascii = 43, i = 1; ascii <= 120; ascii++) {
System.out.print((char)ascii + " ");

if (i++ % 15 == 0)
{
System.out.println();
}
}

关于java - 限制Java中的最大字符输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37578554/

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