Search:

Type: Posts; User: bihlas

Search: Search took 0.11 seconds.

  1. Re: How to get the highest value of an array of integers?

    /**
    * Returns the busiest hour of the day.
    */
    public int busiestHour()
    {
    int theBusiestHour = 0;
    // The hourCounts array has length = 24.
    for(int hour...
  2. Re: How to get the highest value of an array of integers?

    Going through all the elements of the array I am using a for loop, getting each count every time I loop through the array. how to specify in the loop body which from all the counts is the biggest in...
  3. How to get the highest value of an array of integers?

    I am trying to write a method that returns the busiest hour in a logAnalyzer class that read web server data and analyze hourly access patterns and stores them in an array. My problem is, in order...
Results 1 to 3 of 3