Recent content by sbud34

  1. S

    Hot: Altec Lansing ADA880 Speakers -- $23.47 shipped!

    My order still states the shipment will be mailed ETA 12/26
  2. S

    UCI is coming up, RANK NUMBER 10

    << Hmm is Berkley a hard school to get into? I'm in Polytechnic University a very hard school and I''m thinking of transferring to a different university. I'm studying computer engineering. Anyone can help me out. It's in Brooklyn, NewYork. I'm thinking of getting away somewhere far. California...
  3. S

    Asian girls vs. girls of other races (photo added)

    << I like... girls :) >>
  4. S

    Whats a good place to buy a custom comp?

    i bought my comp for college from here
  5. S

    $200 for xmas present, what to get?

    Guess "professional exotic dancers" are out of the picture eh? :):):D
  6. S

    Taking SATs a third time?!?

    The general consensus is that you can take the SAT up to 3 times and the college will not look down upon it. I personally took it 4 times. And was accepted to 4 out of 5 colleges that i applied to (Rice gave me the boot hehe). Good Luck
  7. S

    what does bump mean????

    i thought bump = bring up my post ..... can anyone confirm?
  8. S

    I am stuck in a inifnite loop and i cant get out!

    << << Trying to write Euclid's greatest denominator algorithm using recursion today, and i freaking wrote an infinte loop and i dont know how to fix it ahh!! Whoever invented recursion should be dragged out and beaten endlessly with a bamboo stick :disgust: >> int recursion(){ beat whoever...
  9. S

    I am stuck in a inifnite loop and i cant get out!

    matt you now have a personal shrine in my drom room.....send pics over and i'll post them on my wall hah :)
  10. S

    I am stuck in a inifnite loop and i cant get out!

    the value that y returns will be whatever the y value is when remainder == 0.
  11. S

    I am stuck in a inifnite loop and i cant get out!

    public int GCD(int x, int y) { int remainder = 0; remainder = x % y; while (remainder!=0) { GCD(y, remainder); }...
  12. S

    I am stuck in a inifnite loop and i cant get out!

    << Stop when the remainder is zero. Make sure you're passing the correct numbers to the next recursive step. >> I have a sentinel when remainder == 0. And In the debugger i see remainder going to zero, but the program wont freaking stop =( 9 lines of code and i can't figure out what's...
  13. S

    I am stuck in a inifnite loop and i cant get out!

    Two words: Inifinite loops.... btw I have been sitting here for two hours and still cant figure what's going wrong.....:disgust:
  14. S

    I am stuck in a inifnite loop and i cant get out!

    << run over it with a car... not beat it with a bamboo stick.. recursion SUCKS.. >> And stone him to death while we're at it.....
  15. S

    I am stuck in a inifnite loop and i cant get out!

    Trying to write Euclid's greatest denominator algorithm using recursion today, and i freaking wrote an infinte loop and i dont know how to fix it ahh!! Whoever invented recursion should be dragged out and beaten endlessly with a bamboo stick :disgust: