Warning

 

Close
Confirm Action

Are you sure you wish to do this?

Cancel Confirm
AR15.COM
7/15/2009 8:40:20 AM EDT
My girlfriend is taking computer classes and now she has to do visual c++ that has to do with Roots, randum numbers, and she is stuck, can somebody that knows what there doing HELP her out.
Thanks, Rick
7/15/2009 1:18:59 PM EDT
[#1]
# include <math.h>

double root( double value, double root )
{
      return pow( value, 1/root );
}

# iniclude <stdlib.h>

int my_random()
{
    static been_here = FALSE;

    if( ! been_here )
         randomize();
    return random();
}