Write a program that asks the users to enter n values and stores them in a vector. The value of n should also be given by the user. Ask the user for one of the operations given below and print the result after performing the designated operation on the vector in a cumulative fashion. The operation could be any of the following: 1. Add 2. Subtract 3. Multiply 4. Divide Refer to the diagram below to see how an operation will be performed on the vector. Here the vector has values {10, 20, -30, 5, -50, 100} and the selected operation is “Add".

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.6: The Standard Template Library (stl)
Problem 8E
icon
Related questions
Question

this in c++

Write a program that asks the users to enter n values and stores them in a vector. The value of n
should also be given by the user. Ask the user for one of the operations given below and print the
result after performing the designated operation on the vector in a cumulative fashion. The
operation could be any of the following:
1. Add
2. Subtract
3. Multiply
4. Divide
Refer to the diagram below to see how an operation will be performed on the vector. Here the
vector has values {10, 20, -30, 5, -50, 100} and the selected operation is "Add".
2
3
5
10
30
-45
55
10
20
-30
5
-50
100
return
+
+
+
Sample Output:
Enter the size of the vector: 6
Enter Element:10
20
-30
5
-50
100
Enter number for the opertaion you would like to choose?
1. Add
2. Substract
3. Multiply
1
Operation: Add
Adding All elements: Answer is: 55
Transcribed Image Text:Write a program that asks the users to enter n values and stores them in a vector. The value of n should also be given by the user. Ask the user for one of the operations given below and print the result after performing the designated operation on the vector in a cumulative fashion. The operation could be any of the following: 1. Add 2. Subtract 3. Multiply 4. Divide Refer to the diagram below to see how an operation will be performed on the vector. Here the vector has values {10, 20, -30, 5, -50, 100} and the selected operation is "Add". 2 3 5 10 30 -45 55 10 20 -30 5 -50 100 return + + + Sample Output: Enter the size of the vector: 6 Enter Element:10 20 -30 5 -50 100 Enter number for the opertaion you would like to choose? 1. Add 2. Substract 3. Multiply 1 Operation: Add Adding All elements: Answer is: 55
Expert Solution
steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Knowledge Booster
ADT and 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++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr