so far this is all i have im a begginer to coding and cant figure out how to create a random number
Code:
{
int i = 100;
while (i <= 199)
{
cout << "your number is 100-199\n";
cout << " i = " << i << endl;
i++;
}
system("pause");
}
Comment