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.
Because it reverses an image there for making the objects appear on opposite side
An object has undergone acceleration if ...
-- it's moving faster than it was before
or
-- it's moving slower than it was before
or
-- it's moving in a different direction that it was before.
Explanation
(m) is measured in kilograms (kg)
<h2>(F) is measured in newtons (N)</h2>
<h3>acceleration (a) is measured in metres per second squared (m/s²)</h3>
Answer:
According to newton's second law of motionF=ma Data:-F=3200kgm/sec² or N ,a=2m/sec² ,m=? solution :-F=ma here we have to find m so m=F/a ,m=3200/2=1600kg