CCF之出现次数最多的数——2013.12 第一题 (java满分代码)

package Question_one;
/*
 * 出现次数最多的数
 */

import java.util.*;
public class Question_2013_12 {

    public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);
    int N = scanner.nextInt();
    int []arry = new int[N];
    int []count = new int[N];
    for(int i = 0;i         arry[i] = scanner.nextInt();
        count[i]=1;
    }
    
    for(int i = 0;i         for(int j = i+1; j             if(arry[j] == arry[i])
                count[i]++;
        }
    }
    int max=0;
    int p = 0 ;
    int m;
    for(int i = 0 ;i         if(count[i]>max) {
            max = count[i];
            p = i;
        }else if(count[i] == max) {
            if(arry[p]>arry[i])
                p=i;
        }
    }
    System.out.println(arry[p]);

    }

}
不足之处。欢迎指正!

你可能感兴趣的:(CCF,CCF,JAVA,2013,第一题)