and closing
.
The heart has 4 valves. They are what makes the lub-dub lub-dub sounds that can be heard from the chest.
The mitral valve is located between the left atrium and the left ventricle. It closes the left atrium to collect oxygenated blood from the lungs and opens to pass it on to the left ventricle.
The tricuspid valve is located between the right atrium and the right ventricle. It closes the right atrium to hold unoxygenated blood and opens to pass it on to the right ventricle ensuring a one way flow.
The aortic valve is located between the aorta and the left ventricle. It closes the left ventricle and opens to the aorta to pass on the oxygen-rich blood to the body.
The pulmonary valve is located between the pulmonary artery and the right ventricle. It closes off the right ventricle and opens to pass on unoxygenated blood to the lungs.
Answer:
#include <iostream>
#include <vector>
using namespace std;
int main() {
const int NUM_GUESSES = 3;
vector<int> userGuesses(NUM_GUESSES);
int i = 0;
int uGuess = 0;
for(i = 0; i <= userGuesses.size() - 1; i++){
cin >> uGuess;
userGuesses.at(i) = uGuess;
}
cout << endl;
return 0;
}
Explanation:
First inbuilt library were imported. Then inside the main( ) function, 3 was assigned to NUM_GUESSES meaning the user is to guess 3 numbers. Next, a vector was defined with a size of NUM_GUESSES.
Then a for-loop is use to receive user guess via cin and each guess is assigned to the vector.
I cant read it, i could most likely help if i could read it.
A is right because I took the test