numPeople is read from input as the size of the vector. Then, numPeople elements are read from input into the vector bikingRoster. Use a loop to access each element in the vector and if the element does not equal 3, output the element followed by a newline. Ex: If the input is 5 143 162 105 3 17, then the output is: 143 162 105 17 2 #include 3 using namespace std; 4 5 int main() { 6 7 8 9 10 11 12 13 14 15 15 17 int numPeople; unsigned int i; cin >> numPeople; vector bikingRoster (numPeople); for (i = 0; i < bikingRoster.size(); ++i) { cin >> bikingRoster.at(i); } Y your code uces here Scanner 4

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 16PE
icon
Related questions
Question
Write in c++ please
numPeople is read from input as the size of the vector. Then, numPeople elements are read from input into the vector
bikingRoster. Use a loop to access each element in the vector and if the element does not equal 3, output the element followed by
a newline.
Ex: If the input is 5 143 162 105 3 17, then the output is:
143
162
105
17
2 #include <vector>
3 using namespace std;
4
5 int main() {
6
7
8
9
10
11
12
13
14
15
15
17
18
19}
int numPeople;
unsigned int i;
cin >> numPeople;
vector<int> bikingRoster (numPeople);
for (i = 0; i < bikingRoster.size(); ++i) {
cin >> bikingRoster.at(i);
neranScanner
}
ke
return 0;
Your code ces here
Transcribed Image Text:numPeople is read from input as the size of the vector. Then, numPeople elements are read from input into the vector bikingRoster. Use a loop to access each element in the vector and if the element does not equal 3, output the element followed by a newline. Ex: If the input is 5 143 162 105 3 17, then the output is: 143 162 105 17 2 #include <vector> 3 using namespace std; 4 5 int main() { 6 7 8 9 10 11 12 13 14 15 15 17 18 19} int numPeople; unsigned int i; cin >> numPeople; vector<int> bikingRoster (numPeople); for (i = 0; i < bikingRoster.size(); ++i) { cin >> bikingRoster.at(i); neranScanner } ke return 0; Your code ces here
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Operations of vector class
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
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,