subject
Engineering, 07.03.2020 06:29 jfarley259

Write a for loop to determine the number of elements in vector userValuess that equal matchValue. Assign the number of matching elements to numMatches. Use NUM_VALS to determine how many elements are in the vector. Ex: numMatches is 3 if matchValue = 2 and userVals = {2, 2, 1, 2}.

Sample program:

#include
#include
using namespace std;

int main() {
const int NUM_VALS = 4;
vector userValues(NUM_VALS);
int i = 0;
int matchValue = 0;
int numMatches = 0;

userValues. at(0) = 2;
userValues. at(1) = 2;
userValues. at(2) = 1;
userValues. at(3) = 2;

matchValue = 2;

cout << "Elements equal to " << matchValue << ": " << numMatches << endl;

return 0;
}

ansver
Answers: 3

Another question on Engineering

question
Engineering, 04.07.2019 03:10
What precautions should you take to prevent injuries when dealing with heavy loads?
Answers: 1
question
Engineering, 04.07.2019 18:10
Afluid flows with a velocity field given by v=(x/t)i.. determine the local and convective accelerations when x=3 and t=1.
Answers: 2
question
Engineering, 04.07.2019 18:10
The drive force for diffusion is 7 fick's first law can be used to solve the non-steady state diffusion. a)-true b)-false
Answers: 1
question
Engineering, 04.07.2019 18:10
The filament of an incandescent lamp has a temperature of 2000k. calculate the fraction of radiation emitted in the visible light band if the filament is approximated as blackbody
Answers: 2
You know the right answer?
Write a for loop to determine the number of elements in vector userValuess that equal matchValue. As...
Questions
question
Mathematics, 11.11.2020 22:00
question
History, 11.11.2020 22:00
question
Mathematics, 11.11.2020 22:00
Questions on the website: 13722359