Search:

Type: Posts; User: fuh

Page 1 of 8 1 2 3 4

Search: Search took 0.01 seconds.

  1. Thread: Dev-c++

    by fuh
    Replies
    1
    Views
    2,037

    Straight from the help:

    Straight from the help:
  2. Replies
    5
    Views
    1,487

    You could try asking for the numbers.

    You could try asking for the numbers.
  3. Thread: rpg ?'s

    by fuh
    Replies
    17
    Views
    4,577

    Umm... Just call rand() every time you need a...

    Umm...
    Just call rand() every time you need a random number...
    Also, a common problem is not seeding the generator.
  4. Replies
    3
    Views
    2,603

    How about this...

    How about this thing on game programming?
  5. Thread: Program Password

    by fuh
    Replies
    8
    Views
    1,847

    Stand in front of the computer and ask for the...

    Stand in front of the computer and ask for the password everytime someone tries to open RealPlayer. :p

    On a more serious note, I agree with Salem. Just move realplayer to some hidden directory in...
  6. Replies
    4
    Views
    2,458

    Put using namespace std in hashtable.h

    Put using namespace std in hashtable.h
  7. Thread: Windows 95

    by fuh
    Replies
    14
    Views
    5,062

    98 is the best in my opinion. I'm typing on XP...

    98 is the best in my opinion. I'm typing on XP right now and it freezes about once a day. In fact, this is my second time typing this because it just froze and I had to turn it off and on and check...
  8. Thread: recursion

    by fuh
    Replies
    19
    Views
    5,175

    Semicolon after the call to powers(). Edit:...

    Semicolon after the call to powers().

    Edit: Ha! I beat Sean this time :D
  9. Thread: Windows 95

    by fuh
    Replies
    14
    Views
    5,062

    I used 95 until a couple of years ago... It was...

    I used 95 until a couple of years ago... It was ugly.
  10. Thread: recursion

    by fuh
    Replies
    19
    Views
    5,175

    int powers(int x; unsigned int y) { if(y==0)...

    int powers(int x; unsigned int y) {
    if(y==0) {
    cout<<"1";//any base to the power of 0 is 1
    return 1; }
    else {
    powers(x*x(y-1)); }

    }

    Your old version was only...
  11. Replies
    5
    Views
    1,212

    if(input == 7) { return 0; } I think people...

    if(input == 7) {
    return 0;
    }

    I think people are forgetting about return these days...
    Seems simple enough for me, and that's saying a lot :D
  12. Thread: if/break statement

    by fuh
    Replies
    7
    Views
    10,749

    Um... return 0;? I'd think that'd be the right...

    Um... return 0;?
    I'd think that'd be the right answer.
  13. Thread: Login

    by fuh
    Replies
    3
    Views
    2,443

    Actually, you wouldn't. You'd just have to do...

    Actually, you wouldn't. You'd just have to do something where you generate a random filename and store the part of the filename before the .jpg or .bmp or .whatever and store that in an array of...
  14. Replies
    4
    Views
    3,992

    If you have the .devpak file you can open...

    If you have the .devpak file you can open PackMan.exe in the Dev-Dpp directory and click install, find the file, and hit open.
  15. Thread: deep into C/C++

    by fuh
    Replies
    6
    Views
    10,557

    It depends on what you're looking to do. There...

    It depends on what you're looking to do. There are several libraries out there that you could use for most things, but it's all in what your goal is.

    If you want to get to graphics and other...
  16. Thread: Super Bowl

    by fuh
    Replies
    48
    Views
    15,004

    Paul is better than pop/rock singers in my...

    Paul is better than pop/rock singers in my opinion. I'm weird; I like country :o .
  17. Thread: Super Bowl

    by fuh
    Replies
    48
    Views
    15,004

    That was sad. Noooo!!!

    That was sad. Noooo!!!
  18. Thread: Super Bowl

    by fuh
    Replies
    48
    Views
    15,004

    Ha ha! Branch tripped :D !

    Ha ha! Branch tripped :D !
  19. Thread: Super Bowl

    by fuh
    Replies
    48
    Views
    15,004

    Oh! Eagles about to score (again)! Is RoD...

    Oh! Eagles about to score (again)!

    Is RoD here? I guess he's too busy watching the game and the commercials to post.

    EDIT: Score!! Yeah!
    Ha ha Pats :p
  20. Thread: Super Bowl

    by fuh
    Replies
    48
    Views
    15,004

    I have to agree with you.

    I have to agree with you.
  21. Thread: Super Bowl

    by fuh
    Replies
    48
    Views
    15,004

    Super Bowl

    I'm suprised that there isn't a Super Bowl thread already, but there isn't, so I'm starting one. Eagles are about to score. Yeah!

    Go Eagles!
  22. Thread: DevCPP

    by fuh
    Replies
    4
    Views
    1,872

    If you're capable of programming one, then yes. ...

    If you're capable of programming one, then yes.

    Going along with CornedBee:

    What if the people who made Halo used DevC++ because they didn't want to pay for a compiler? Would that mean Halo is...
  23. Replies
    12
    Views
    2,834

    Oops! Problem solved. I just pulled the code up...

    Oops! Problem solved. I just pulled the code up right on the spot.
  24. Replies
    17
    Views
    8,190

    Can't wait! This decides what distribution I'm...

    Can't wait! This decides what distribution I'm going to get. The polls have already closed, and I can't wait until I get to see the results.

    EDIT: Hey! I just realized I have to be a member to...
  25. Replies
    5
    Views
    2,220

    Are player and computer global variables?

    Are player and computer global variables?
Results 1 to 25 of 180
Page 1 of 8 1 2 3 4