Search:

Type: Posts; User: Magneto

Search: Search took 0.00 seconds.

  1. Replies
    21
    Views
    3,426

    Thanks for all your help so far guys, I...

    Thanks for all your help so far guys, I appreciate it!

    #3
    The Problem - I need to clear the screen in the middle of a program.

    The code -

    #include <iostream>

    using namespace std;
  2. Replies
    21
    Views
    3,426

    I can't say I fully understand namespaces, but...

    I can't say I fully understand namespaces, but I'm going to start using std::, I guess I'll wait until my book covers it.

    #2
    The question - Where is it applicable to use cin.ignore() and...
  3. Replies
    21
    Views
    3,426

    Thanks everyone, you've been a great help. Isn't...

    Thanks everyone, you've been a great help. Isn't learning fun?
  4. Replies
    21
    Views
    3,426

    Your first suggestion doesn't seem to chage the...

    Your first suggestion doesn't seem to chage the program at all.

    Your second suggestion works to an extent; I run the program and type something then hit enter. It then displays the first letter...
  5. Replies
    21
    Views
    3,426

    Magneto's journey to becoming a C++ expert.

    OK, maybe not an expert but I'm going to give it a good try. Right the purpose of this thread is to consolidate all of my little problems/questions of which don't need a new thread each time.

    #1...
  6. Replies
    16
    Views
    5,588

    Yeah, there is an option and I must of not done...

    Yeah, there is an option and I must of not done it the first time.
    Check, thanks for the advice.

    Anywho, you can look forward to seeing a lot more of my problems around here (I'm sure I'll have...
  7. Replies
    16
    Views
    5,588

    It must have been something to do with my...

    It must have been something to do with my compiler. I've reinstalled Dev-C++ using that guide you gave me. The version I have installed now is, Dev-C++ 5.0 beta 9.2 (4.9.9.2) (9.0 MB) with Mingw/GCC...
  8. Replies
    16
    Views
    5,588

    I'm quite sure I downloaded ("Dev-C++ 5.0 beta...

    I'm quite sure I downloaded ("Dev-C++ 5.0 beta 9.2 (4.9.9.2) (9.0 MB) with Mingw/GCC 3.4.2"). I'm going to unistall this version (whatever it is, I'm not sure) and install (devcpp-4.9.9.2_setup.exe)....
  9. Replies
    16
    Views
    5,588

    Well I only installed Dev-C++ today and I'm...

    Well I only installed Dev-C++ today and I'm running 4.9.9.2 (It's been on my desktop a while). I could try reinstalling, but as I said I've only installed it today...

    Do you think I should try a...
  10. Replies
    16
    Views
    5,588

    Wow, that was fast. :D I'm using Bloodshed...

    Wow, that was fast. :D

    I'm using Bloodshed Dev-C++, is that a problem? I've tried your version of the program and it gave me a whole new set of errors.

    See for yourself, screenshot:...
  11. Replies
    16
    Views
    5,588

    My first program and it doesn't work.

    #include <iostream>
    int main()
    {
    std::cout << "Enter two numbers:" << std::endl;
    int v1, v2;
    std::cin >> v1 >> v2;
    std::cout << "The sum of " << v1 << "...
Results 1 to 11 of 11