Answer:
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
vector<int> v;
int value;
bool hasDuplicates = false;
for(int i=1; i<=5; i++)
cout << "Enter number " << i << ": ";
cin >> value;
hasDuplicates
cout << (hasDuplicates ? "DUPLICATES" : "ALL UNIQUE") << endl;
}
Step-by-step explanation:
If you can make your program simpler by using STL (i.e., the vector template), do it.