Quote Originally Posted by GCDEF View Post
Code:
int nLowest = num1;
if(num2 < nLowest)
    nLowest = num2;
//repeat the last two lines for the remaining numbers
return nLowest;
wow, i cant believe i didnt think of that, lol...
thanks man