74.8k views
2 votes
19.) Write a C++ program that requests five integer values from the user. If any of the values entered are duplicates, it prints "DUPLICATES"; otherwise, it prints "ALL UNIQUE".​

User Barzos
by
7.6k points

1 Answer

6 votes

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.

User Gregor Zurowski
by
8.2k points