Question: numTime is read from input as the number of input values in the vector that follow. Use a for loop to add 2 to each


numTime is read from input as the number of input values in the vector that follow. Use a for loop to add 2 to each element of vector bikingNumbers and output all elements, following each element with a "*" including the last element. Ex: If the input is 5169808119577 , then the output is: 171828319779 \#include \#include using namespace std; int main() int numTime; int i; cin >> numTime; vector bikingNumbers(numTime); for (i=0;i> bikingNumbers.at(i); //TODO: return 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
