“我想查找并打印给定字符串中每个字符的出现,我已经建立了自己的逻辑,但存在一些问题。例如,如果我将输入作为“ JAVA”输入。 我的程序产生的输出将是
J 1
A 2
V 1
A 1
预期输出:
J 1
A 2
V 1
我不想再打印 A 了。我希望你们都能明白我的代码中有什么问题。”
导入 java.util.Scanner;
公共类 FindOccuranceOfCharacter {
public static void main(String[] args) {
// TODO Auto-generated method stub
String x;
Scanner input = new Scanner(System.in);
System.out.println("Enter a string");
x = input.nextLine();
x = x.toUpperCase();
int size = x.length();
for(int i =0;i<size;i++) {
int count=1;
char find = x.charAt(i);
for(int j=i+1;j<size;j++) {
if(find == x.charAt(j)) {
count++;
}
}
System.out.printf("%c\t%d",x.charAt(i),count);
System.out.println();
}
}
}
万千封印
森林海
回首忆惘然
相关分类