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.
how does the electric force between two charged particles change if the distance between them is increased by a factor of 3?
a. it is reduced by a factor of 3
Answer:
D
Explanation:
Political scientists use political models to describe the political climate, which is an aggregate mood or opinion of a political society at a point in time.
Explanation:
Momentum = mass × Velocity
p = 62×73
p =4526
Answer:
The direct answer to the question as written is as follows: nothing happens to gravity when someone jumps up - gravity continues exerting a force on the body of that particular someone proportional to (mass of someone) x (mass of Earth) / (distance squared). What you might be asking, however, is what is the net force acting on the body of someone jumping up. At the moment of someone jumping up there is an upward acceleration, i.e., an upward-directed force which counteracts the gravitational force - this is the net force ( a result of the jump force minus gravity). From that moment on, only gravity acts on the body. The someone moves upward gradually decelerating to the downward gravitational acceleration until they reaches the peak of the jump (zero velocity). Then, back to Earth.