Answer:
9,-10,11,-12,13,-14,15,-16,17,-18,19,-20,21,-22,23,-24,25,-26,
27,-28,29,-30
Explanation:
It comes as positive and then as a negative number and continues in the same format.
Hope it helps....
Explanation:
Work out what cookies your site sets, and what they are used for, with a cookie audit.
Tell your visitors how you use cookies.
Obtain their consent, such as by using Optanon, and give them some control.
False. You should always look /check ou tall mirrors periodicly
When should my headlights be turned on?
Why shouldn't one take medication before driving?
Why must you use a turn signal?
I'm not sure about that last one because I forgot but I think its right.
Answer:
#include <iostream>
#include <time.h>
#include <string>
using namespace std;
int main(){
srand(time(NULL));
cout<<"Throw dice"<<endl;
int b =0;
int a=0;
a=rand()%6;
b=rand()%6;
for (int i =0;i<1;i++)
{cout<<"dice one: "<<a<<endl;}
for (int i =0;i<1;i++)
{cout<<"dice two: "<<b<<endl;}
if(a>b)
{cout<<"first dice won"<<endl;}
if(b>a)
{cout<<"second dice won"<<endl;}
else{cout<<"they are same"<<endl;
return main();
}
return 0;
}
Explanation:
/*best dice roll game just for you change it as you want but all necessary things are there/*