How would I change the following code to have the for-statements based on user input? Note: The user can input any amount of positive integers (assume each input is an odd number of positive integers)   #include using namespace std; int main(){     vector a;     cout<<"Enter integers: ";     for(int i=0; i < 11; i++){         int t;         cin>>t;         a.push_back(t);     }     for(int i=0; i < 11; i++){         int t = count(a.begin(), a.end(), a[i]);         if(t==1){             cout<<"\nExclusive: "<

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter7: User-defined Simple Data Types, Namespaces, And The String Type
Section: Chapter Questions
Problem 1TF
icon
Related questions
Question
How would I change the following code to have the for-statements based on user input? Note: The user can input any amount of positive integers (assume each input is an odd number of positive integers)
 
#include<bits/stdc++.h>
using namespace std;
int main(){
    vector<int> a;
    cout<<"Enter integers: ";
    for(int i=0; i < 11; i++){
        int t;
        cin>>t;
        a.push_back(t);
    }
    for(int i=0; i < 11; i++){
        int t = count(a.begin(), a.end(), a[i]);
        if(t==1){
            cout<<"\nExclusive: "<<a[i];
            break;
        }
    }
    return 0;
}
 
Example Output #1:

Enter integers: 2 1 55 3 2 1 4 4 2 2 55

Exclusive: 3

 

Example Output #2:

Enter integers: 12 4 7 4 12 

Exclusive: 7

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr