Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int n = 0;
- cin >> n;
- int *a = new int[n];
- for (int i = 0; i < n; i++)
- cin >> a[i];
- int maxNumber = a[0];
- int maxCount = 1;
- for (int i = 1; i < n; i++)
- {
- if (a[i] > maxNumber)
- {
- maxNumber = a[i];
- maxCount = 1;
- }
- else if (a[i] == maxNumber)
- maxCount++;
- }
- cout << maxCount;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement