fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. int[] dArray = {21, 20, 13, 20, 14, 20, 14, 21};
  13.  
  14. int max = 0;
  15. int countMax = 0;
  16.  
  17. for (int i = 0; i < dArray.length; i++) {
  18. if (max < dArray[i]) {
  19. max = dArray[i];
  20. countMax = 0;
  21. }
  22.  
  23. if (max == dArray[i])
  24. countMax++;
  25. }
  26.  
  27. System.out.println(countMax);
  28. }
  29. }
Success #stdin #stdout 0.03s 711168KB
stdin
Standard input is empty
stdout
2