Search:

Type: Posts; User: Dagda

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    5,062

    Honestly, I just went with the goto. While it can...

    Honestly, I just went with the goto. While it can lead to messy coding, when it isn't a copout it seems to me it can be helpful. I don't intend to use it often, but explicitly avoiding it may be a...
  2. Replies
    7
    Views
    5,062

    Thanks. I was afraid of that. They really do have...

    Thanks. I was afraid of that. They really do have a potential for messy programming.
  3. Replies
    7
    Views
    5,062

    while loop won't break;

    So here's what I've got.


    //: C03:Menu.cpp// Simple menu program demonstrating
    // the use of "break" and "continue"
    #include <iostream>
    using namespace std;


    int main()
  4. Replies
    10
    Views
    2,107

    Does one have to put normal #include stuff into a...

    Does one have to put normal #include stuff into a header, or is it read directly into the main program?
  5. Thread: Visual C++

    by Dagda
    Replies
    4
    Views
    1,138

    Yeah, I see that now. I screwed up and was...

    Yeah, I see that now. I screwed up and was overcomplicating my searches. Sorry.
  6. Thread: Visual C++

    by Dagda
    Replies
    4
    Views
    1,138

    Visual C++

    NVM. Derp.
  7. Replies
    10
    Views
    2,107

    Wow! Thanks a lot, guys. I wasn't sure what to...

    Wow! Thanks a lot, guys. I wasn't sure what to expect of this forum, but that really clarifies things perfectly! I'm sure I'll have more questions for you guys as time goes on.
  8. Replies
    10
    Views
    2,107

    Header file exercise questions

    Okay, so I'm teaching myself C++, and I like to run with as many exercises as I can (I've found that nothing teaches better than actually coding it out, and conceptual knowledge helps much less than...
  9. Thread: Nested For loops

    by Dagda
    Replies
    2
    Views
    950

    ... Well don't I feel sheepish

    ... Well don't I feel sheepish
  10. Thread: Nested For loops

    by Dagda
    Replies
    2
    Views
    950

    Nested For loops

    Okay, so I am a novice programmer, and I'm encountering my first inexplicable issue. I have a pair of nested for loops, meant to check for prime numbers. It is as follows.

    #include <iostream>...
Results 1 to 10 of 10