#include <iostream>
#include <iomanip>
#include <ctime>
#include <cstdlib>
using namespace std;
int main() {
srand(time(NULL));
int m1 = 1 + (rand() % 100);
int m2 = 1 + (rand() % 100);
int r = 1 + (rand() % 100);
double f = (6.674e-11 * m1 * m2) / (r * r);
cout << "m1 = " << m1 << endl;
cout << "m2 = " << m2 << endl;
cout << "r = " << r << endl;
cout << "Force = " << f << " N" << endl;
cout << "Force = " << setprecision(15) << fixed << f << " N" << endl;
return 0;
}

EGR 121 C++ This is an individual assignment. Evidence of copying will be submitted as a...
programming language: C++ *Include Line Documenatations* Overview For this assignment, write a program that will simulate a game of Roulette. Roulette is a casino game of chance where a player may choose to place bets on either a single number, the colors red or black, or whether a number is even or odd. (Note: bets may also be placed on a range of numbers, but we will not cover that situation in this program.) A winning number and color is...