subject

Find max Traversing a vector to find the max (or min) is common. Given a vector of integers, output the maximum integer found in the vector. If the input is 43 8 26, the output is 8. Hints: • Declare a variable named maxitem to hold the max value seen so far. Update that value if you ever see a larger value. • Initialize that variable to any element's value, NOT to 0. 262108.1539616 LAB ACTIVITY 11.11.1: LAB Vectors: Find max 0/10 main. cpp Load default template... 2 #include 3 using namespace std; 4 5 int main() { 6 int numitems; 7 vector int> listItems; int curritem; 9 int i; 10 11 // Get items 12 cin >> numitems; 13 for (i = 0; i < numItems; ++i) { 14 cin >> currItem; 15 listItems. push_back(curritem); 16 } 17 18 /* Type your code here */ 19 20 return; 21 ) Develop mode Submit mode Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 01:30
Jason works as an accountant in a department store. he needs to keep a daily record of all the invoices issued by the store. which file naming convention would him the most? a)give the file a unique name b)name the file in yymmdd format c)use descriptive name while naming the files d)use capital letters while naming the file
Answers: 3
question
Computers and Technology, 23.06.2019 15:20
What does a bonus object do? a. subtracts lives b. keeps track of a player's health c. gives a player an advantage d. makes text appear
Answers: 1
question
Computers and Technology, 23.06.2019 19:00
Whose task it is to ensure that the product flows logically from one step to another?
Answers: 3
question
Computers and Technology, 23.06.2019 21:30
Write a fragment of code that reads in strings from standard input, until end-of-file and prints to standard output the largest value. you may assume there is at least one value. (cascading/streaming logic, basic string processing)
Answers: 3
You know the right answer?
Find max Traversing a vector to find the max (or min) is common. Given a vector of integers, output...
Questions
question
Mathematics, 19.01.2021 08:30
question
Mathematics, 19.01.2021 08:40
question
Mathematics, 19.01.2021 08:40
question
Mathematics, 19.01.2021 08:40
Questions on the website: 13722360