解题思路:
注意事项:
参考代码:import java.util.Scanner;
public class The2909Test {
public static void main(String[] args){
Scanner in = new Scanner(System.in);
int n = in.nextInt();
int[] a1 = new int[n];
for (int i = 0; i <a1.length ; i++) {
a1[i] = in.nextInt();
}
int max1 = -1;
for (int i = 0; i <a1.length ; i++) {
if(a1[i]>max1){
max1 = a1[i];
}
}
//System.out.println(max1);
int temp = 0;
for (int i = 0; i < a1.length; i++) {
if(a1[i] == max1){
temp=i;
break;
}
}
//System.out.println(temp);
int[] count = new int[max1+1];
for(int i=0;i<=max1;i++){
for(int j =0;j<a1.length;j++){
if(a1[j]<=max1){
if(i==a1[j]){
count[i]++;
}
}
}
}
for (int i = 0; i <count.length ; i++) {
//System.out.println(i + " :"+count[i]);
System.out.println(count[i]);
}
}
}
0.0分
0 人评分
剪刀石头布 (C语言代码)浏览:1519 |
单词个数统计 (C语言代码)浏览:1046 |
杨辉三角 (C语言代码)浏览:734 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:381 |
母牛的故事 (C语言代码)浏览:495 |
多组数据新方法浏览:368 |
简单的a+b (C语言代码)浏览:538 |
自编的贪吃蛇小游戏,代码装上easyx图形库就能运行。浏览:959 |
Manchester-台球碰撞-(附带图解)浏览:3788 |
哥德巴赫曾猜测 (C++代码)浏览:788 |