(Occurrence of max numbers)

profileThehonest
 (Not rated)
 (Not rated)
Chat

(Occurrence of max numbers) Write a program that reads integers, finds the largest of them, and counts its occurrences 3 5 2 5 5 5 0; the program finds that the largest is 5 and the occurrence count for 5 is 4.

 

(Hint: Maintain two variables, max and count. max stores the current max number, and count stores its occurrences. Initially, assign the first number to max and 1 to count. Compare each subsequent number with max. If the number is ***** than max, assign it to max and reset the count to 1. If the number is ***** to max, increment count by 1.

 

 

    • 10 years ago
    A+ Work
    NOT RATED

    Purchase the answer to view it

    blurred-text
    • attachment
      qcount.zip