gpt4 book ai didi

Java:如何在每次显示字母时进行计数

转载 作者:行者123 更新时间:2023-12-01 12:19:56 24 4
gpt4 key购买 nike

我正在尝试编写一个程序,每次显示特定字母时都会计数 1。所以如果输入了 AAAA,我希望它显示 A: 4。我已经为此工作了几个小时,但一直无法让它发挥作用。有没有办法在没有数组的情况下做到这一点?这是我目前拥有的代码。

    public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
String A;
String B;
A = kb.nextLine();
System.out.println("Person A: Please enter your amount of wins");
B = kb.nextLine();
System.out.println("Player B: Please enter your amount of wins");
kb.nextLine();
if()
} //main

最佳答案

希望这对您来说非常有效

    public static void main(String[] args) {

Scanner kb = new Scanner(System.in);
System.out.println("Enter Player A value");

String A = kb.nextLine();
calsi(A);

System.out.println("Enter Player B value");
String B = kb.nextLine();
calsi(B);
}

public static void calsi(String cmdVal){

if (cmdVal.length()>0) {
String firstletter=cmdVal.substring(0,1);
System.err.println(firstletter+":"+cmdVal.length());
}else{
System.err.println("No input has given");
}
}

关于Java:如何在每次显示字母时进行计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26750584/

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