我必须设计一个程序,从 0-50 接收任意输入,打印出所有输入 ONCE,然后打印出每个输入的出现。
我让它在某种程度上工作,但是,当输入是: 1 , 2 , 3 , 3 , 3 , 6 , 9 , 0 , 0
它打印出来:
输入:出现
Number Times
1 1
2 1
3 1
3 2
3 3
6 1
9 1
0 1
0 1
代替:
输入:出现
Number Times
0 2
1 1
2 1
3 3
6 1
9 1
这是一门初学者课程,我在网上看到的大多数解决方案似乎都是使用某种我还没有学过的映射技术进行的。
public static void main(String [] args)
{
int[] array = new int[51];
Scanner scan = new Scanner(System.in);
System.out.println("Number \t Times");
while (scan.hasNext()){
int x = scan.nextInt();
if (x>=0 && x<=50){
array[x]++;
System.out.println(x + "\t " + array[x]);
}
}
}
}
我尝试了多种格式化循环的方法,但我似乎无法找到如何让它打印一个多次输入的数字。