Search:

Type: Posts; User: Flakster

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    2,567

    On another note, trying to put numbers with...

    On another note, trying to put numbers with decimals into int variables is alot of fun.

    Maybe I should actually learn how to program before I start smashing my head on the keyboard and hope I end...
  2. Replies
    4
    Views
    2,567

    Wow. Hurrah for wasting two days of debugging...

    Wow.

    Hurrah for wasting two days of debugging over a stupid mistake.

    And, thank you.
  3. Replies
    4
    Views
    2,567

    Problem Compiling

    I'm having trouble compiling what I am working on in Visual C++ 2005 express edition. I also tried compiling the same code in Dev-C++ and still had problems. The code itself probably still has some...
  4. Replies
    5
    Views
    1,206

    =D Too slow! Thanks anyways =)

    =D Too slow! Thanks anyways =)
  5. Replies
    5
    Views
    1,206

    for (studentNumber = 0; studentNumber

    for (studentNumber = 0; studentNumber < numStudents; ++studentNumber)
    {
    if( lowRange < grades[studentNumber] && grades[studentNumber] < highRange ) ++gradesInRange;
    }

    Using this still only...
  6. Replies
    5
    Views
    1,206

    Small Logic Issue

    Or atleast thats what I THINK the problem is. Here is the function I am having toubles with.

    The idea is that two numbers are entered, and the code should check to see how many numbers in the...
  7. Replies
    6
    Views
    1,648

    Thirded?

    Thirded?
  8. Thread: .icon

    by Flakster
    Replies
    4
    Views
    1,222

    Email is [email protected]. I can't...

    Email is [email protected].

    I can't bring discs to school or I'll get totally ..........ed out.

    "That disc has a virus in it, doesn't it!"
  9. Thread: .icon

    by Flakster
    Replies
    4
    Views
    1,222

    .icon

    I have a small favor to ask of someone, I need an Icon file made.

    I have the picture here for the icon, but I can't install an icon maker on my computer at school. I really want this icon to make...
  10. Replies
    13
    Views
    1,599

    I'm using Dev C++ 4.9.9.2 with the built in MingW...

    I'm using Dev C++ 4.9.9.2 with the built in MingW compiler.

    I'm going to try right now and see if sleep would help at all...

    Sleep still allows the stacked key hits to go after sleep is done,...
  11. Replies
    13
    Views
    1,599

    You got it, except that I don't want to know if...

    You got it, except that I don't want to know if they are missing the instructions, I want to avoid that altogether.

    I only want them to move on after seeing the "Please hit enter to continue"...
  12. Replies
    13
    Views
    1,599

    There is no user input, thats the thing. It's...

    There is no user input, thats the thing. It's just a simple prompt.




    cout<<"When ready, please press enter"<<endl;
    cin.get();
  13. Replies
    13
    Views
    1,599

    The cin.ignore solution...

    The cin.ignore solution (cin.ignore(numeric_limits<streamsize>::max(), '\n')) only ignores the first enter hit, then the next runs through. My problem is that I have some impatient people that...
  14. Replies
    2
    Views
    2,015

    Your problem is that the operator >= is looking...

    Your problem is that the operator >= is looking to see if 'gender' is greater then or equal to 'M'. The operator you want to use it == which checks to see if 'gender' is identical to 'M'.
  15. Replies
    13
    Views
    1,599

    I'm wondering, what part of that FAQ is the...

    I'm wondering, what part of that FAQ is the actual script that is flushing the input buffer? It's a little confusing, can someone help me make sense of it?
  16. Replies
    13
    Views
    1,599

    Problem with keystroke stacking

    Is there anyway to prevent from keystroke stacking in a program?

    I'm consistently have a problem with cin.get() where the user presses enter either accidently or for some other reason before...
  17. Replies
    5
    Views
    1,113

    You can also use 'system("color xx");', which I...

    You can also use 'system("color xx");', which I believe is also covered in the windows.h header file.

    Replace the first x with your desired background color, and the second x with your desired...
  18. Replies
    8
    Views
    1,703

    Yeah, that was kind of pseudo/very crappy code I...

    Yeah, that was kind of pseudo/very crappy code I threw together, then I realized I was pretty much doing it right already, but I was thrown off by a simple mistake elsewhere in my code.

    Thanks...
  19. Replies
    8
    Views
    1,703

    Oops, nevermind, I figured out what I was doing...

    Oops, nevermind, I figured out what I was doing wrong.

    I was using return properly, but I wasn't in the right spot.

    Sorry for horribly vague questions.
  20. Replies
    8
    Views
    1,703

    Ok, I was asking the wrong question, sorry. If...

    Ok, I was asking the wrong question, sorry.

    If I want to return a variable, does it need to be stated with the function?

    As in, should it look like this?



    #include <iostream>
  21. Replies
    8
    Views
    1,703

    So if I go... return num; it will take the...

    So if I go...

    return num;

    it will take the variable that num and return it to where it was declared?
  22. Replies
    8
    Views
    1,703

    Return Statement

    I have my variables stated globally, and at the end of each function, I want them to be updated globally, so that the next function is using the right numbers.

    Does return do this? How do I go...
  23. Replies
    5
    Views
    1,176

    I'm using Dev C++ 4.9.9.2 OS: Windows XP

    I'm using Dev C++ 4.9.9.2
    OS: Windows XP
  24. Replies
    5
    Views
    1,176

    system("Pause")

    I was wondering if it would be possible to create a pause that will only continue after a keystroke.

    Sort of like our little friend system("pause"), except, I don't want the text "Press any key to...
  25. Replies
    12
    Views
    3,949

    This has helped alot guys, thanks.

    This has helped alot guys, thanks.
Results 1 to 25 of 52
Page 1 of 3 1 2 3