void add_values ()
{
cout << "Please input the a number between 1 and 10 and after input numbers between 999 to -999." << endl;
int counter;
cin >> counter;
for(int i=0; i< counter; i++)
{
cout << "i=" <<i << endl; /**test to see if I am here*/
while ((user_num[i] > -999) || (user_num[i] < 999))
{
cin >> user_num[i];
cout << "user_num=" << user_num[i] << endl;/**test to see if I am here*/
if((user_num[i] < -999) || (user_num[1] > 999))
{
cout << "\a\a\a\a\a" << "Enter a correct option." << endl;
continue;
}
cout << 1 << endl;/**test to see if I am here*/
}
}
/** a for statement allowing for you to choose how many numbers you put in
a while statement stating what the range is
a if statement checking and stopping errors*/
return display_menu();
}