gpt4 book ai didi

java - 使用 while 循环确定要创建的字符数量

转载 作者:太空宇宙 更新时间:2023-11-04 12:57:27 25 4
gpt4 key购买 nike

我正在尝试创建一个使用 while 循环反转字符串的应用程序。只是想知道我是否走在正确的道路上。所以我想我应该做一个 while 循环来确定我应该制作多少个字符。然后我会在控制台中反向打印它们。

这是到目前为止我的代码。任何帮助将不胜感激。

    // Get the text from the input from the user
// Outputs it to the Text area
// Uses while loop to calculate how many chars to create

String Startword = txfInput.getText();


int LengthOfWord = Startword.length();
int Counter = 1;



while (Counter <= LengthOfWord)

{

// Creates amounts of chars based off the counter





Counter = Counter +1 ;


}

有什么建议吗?

最佳答案

只需使用 for 循环..

String reverse = "";
for (int i = word.length()-1; i>=0; i--)
{
reverse += word.charAt(i);
}

如果你想要一段时间...那么

while(i >= 0)
{
reverse += word.charAt(i);
i--;
}

关于java - 使用 while 循环确定要创建的字符数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35253522/

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