gpt4 book ai didi

java - 我的任务是创建一个返回单词长度的 countCharacters() 方法,但我必须递归地执行此操作

转载 作者:行者123 更新时间:2023-12-01 08:50:47 25 4
gpt4 key购买 nike

这是我到目前为止的格式:

public class CompSci12A2Recursion {

/**
* @param args the command line arguments
*/

public static void countCharacters(String s){
String CharCount;
Integer intCharCount;
CharCount = JOptionPane.showInputDialog(s);
if (CharCount.length() == 1){
System.out.println(CharCount);
}
}
public static void main(String[] args) {
// TODO code application logic here
CompSci12A2Recursion mySimpleObject = new CompSci12A2Recursion();
CompSci12A2Recursion.countCharacters("Type in a word, and it will count how many characters are in it.");

}

}

我试图做到这一点,以便无论在 MessageBox 中键入什么,它都会让用户知道该单词中有多少个字符。

最佳答案

递归吧?试试这个:

public int count (String str){ 
if (str.length == 1)
return 1;
else if (str.length == 0)
return 0;
else
return count(str.substring(1)) + 1;
}

关于java - 我的任务是创建一个返回单词长度的 countCharacters() 方法,但我必须递归地执行此操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42422606/

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