我无法将此循环的输出格式化为每行只有15个字符。有人可以帮忙吗?
@Autowired
private AllowedHosts allowedHosts;
}
答案 0 :(得分:1)
这将实现:
for (int ascii = 43, i = 1; ascii <= 120; ascii++) {
System.out.print((char)ascii + " ");
if (i++ % 15 == 0)
{
System.out.println();
}
}