Random numbers, math library and mixed mode arithmetic

Feb 19, 2019 at 5:02am
Write a program that will do the following steps:
- generate 2 random integer numbers between 1 and 20 inclusive ( 1-20, no 0 values)
- calculate the square root of each number
- calculate the average of the 2 numbers
- print the 2 random numbers
- print the square root of each random number with 3 digits after the decimal point
- print the average of the 2 numbers with 1 digit after the decimal point

Example program output:
The two random numbers are 2 and 3
The average is 2.5
The square root of 2 is 1.214
The square root of 3 is 1.372

#include <iostream>
#include <ctime> // Needed for the true randomization
#include <cstdlib>
#include<cmath>
#include<iomanip>
using namespace std;

int main ()
{
int xRan=0;
int xRan1=0;
double root1;
double root2;
double average;

srand( time(0)); // This will ensure a really randomized number by using computer clock

xRan=rand()%20 + 1; // Randomizing the number between 1-15.
xRan1=rand()%20 + 1;
cout << "The two random numbers between 1-20 are: " << xRan;
cout<<" and "<<xRan1<<endl;
return 0;
}
Feb 19, 2019 at 5:15am
Is there a question?
Feb 20, 2019 at 6:43am
I'm new to c++ coding so IDk how to do this and how to start thx! It should be easy but i'm having a very hard time! So i need help!
Feb 20, 2019 at 6:59am
This is a “prove you’ve been paying attention in class” kind of homework.

You have generated two random numbers. You have printed them. That’s a third of your homework already done!

Is there a math function somewhere that can compute the square root of a number? (There is. Try Googling “c++ square root”.)

Use setw() manipulator to control the total field width (number of characters output) and setprecision() to control the number of digits appearing after the decimal point. Oh, don’t forget to use fixed before outputting any values.

cout << fixed;

The average of two numbers is (x1 + x2) / 2.

Good luck!
Feb 20, 2019 at 7:26am
so i can basically pick my own number?!
Feb 20, 2019 at 7:33am
so i can basically pick my own number?!


What do you mean by picking your own number?
Feb 20, 2019 at 7:47am
I saw the instruction i have to pick 2 number between 1-20!
Feb 20, 2019 at 8:27am
Heh, https://xkcd.com/221/

No, you cannot pick your own random number.
I don’t think I’ve used any difficult or idiomatic English. Where are you confused?
Topic archived. No new replies allowed.