gpt4 book ai didi

java - 字符串将特定数量的单词打印到新行中

转载 作者:行者123 更新时间:2023-11-29 05:53:21 25 4
gpt4 key购买 nike

<分区>

我想知道如何更改我的代码,以便在另一个类中指定给定值单词的数量。在构造类中,我需要创建一个打印每个给定值的方法。这是我的代码:

public void wordBox()
{
for (int i = 0; i < words.length(); i++)
{
if (words.length() % wordsPerLine == 0 && words.charAt(wordsPerLine) == ' ')
System.out.println();
else
System.out.print(words.charAt(i));
}
System.out.println();
}

wordsPerLine 在另一个类中被指定为数字 3。字符串是这样的:“敏捷的棕色狐狸跳过了懒惰的狗”

输出应该是这样的:
快速棕色
狐狸跳了过去
懒狗

注意:我不允许使用任何其他类,如 token 或缓冲区。另外,我不能使用替换/拆分。所以,这就是我得到的,我需要从中努力。

任何帮助将不胜感激。谢谢

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