A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write C++ program to count total duplicate elements in an array
Q:

Write C++ program to count total duplicate elements in an array

0

Write C++ program to count total duplicate elements in an array

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.

#include <iostream>
using namespace std;
 
int main()
{
    int arr[100];
    int i, j, n, count = 0;
 
    // Readinng size of the array
    cout<<"Enter size of the array : ";
    cin>>n;
 
    //Reading elements of array
    cout<<"Enter elements in array : ";
    for(i=0; i<n; i++)
    {
        cin>>arr[i];
    }
    //Find all duplicate elements in array
    for(i=0; i<n; i++)
    {
        for(j=i+1; j<n; j++)
        {
        // If duplicate element found then increment count by 1
        if(arr[i] == arr[j])
            {
                count++;
                break;
            }
        }
    }
    cout<<"\nTotal number of duplicate elements found in array: "<<count;
 
    return 0;
}

Result:

Enter size of the array : 5

Enter elements in array : 1

1

2

3

2

Total number of duplicate elements found in array: 2

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now