Search:

Type: Posts; User: QuestionKing

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. You do not yet have a function. Looks like you...

    You do not yet have a function.

    Looks like you did well on the loop so far...

    This hint is more of a reminder as to what is happening, rather than an instruction to follow. If you think about...
  2. Thread: book

    by QuestionKing
    Replies
    4
    Views
    3,910

    so what are you looking for

    so what are you looking for
  3. // ... MyTime.begin = getTime(); // ...

    // ...
    MyTime.begin = getTime();
    // ... do some back flips, maybe a swan dive
    MyTime.complete = getTime();
    // TimeTaken = complete - begin
    std::cout<< TimeTaken<<...
  4. Replies
    12
    Views
    1,919

    I looked, your posted doc.doc was empty :/

    I looked, your posted doc.doc was empty :/
  5. Thread: Strcmp

    by QuestionKing
    Replies
    16
    Views
    2,825

    myfile.open ("filename.txt"); You can use a...

    myfile.open ("filename.txt");

    You can use a variable in place of the file name
  6. Thread: Strcmp

    by QuestionKing
    Replies
    16
    Views
    2,825

    I think everything you need to understand that...

    I think everything you need to understand that code is on this page. If you read the whole page...
  7. Replies
    12
    Views
    1,668

    done = false; // sets the boolean value of the...

    done = false; // sets the boolean value of the variable done equal to false

    done = true; // sets the boolean value of the variable done eaual to true
    google boolean
  8. Replies
    12
    Views
    1,668

    google c++ not operator

    google c++ not operator
  9. Replies
    12
    Views
    1,668

    do { /* something over and over */ }while(...

    do
    {
    /* something over and over */
    }while( /* user input is not 1,2,or 3 */ );
    would be one approach
  10. Give it a shot and post what you come up with. ...

    Give it a shot and post what you come up with. You will get it figured out! Plus once you start working on it and figure some things out, you will find other things just seem to fall into place.
  11. I have purposely dodged providing that direct...

    I have purposely dodged providing that direct relation to your work because it seems to me that is the actual point of the assignment. To show your understanding of classes. Give it a try yourself...
  12. It looks like you just don't quite grasp object...

    It looks like you just don't quite grasp object oriented programming, I hope I am wrong as I do not mean anything offensive by it. But looking at the code and your questions, I think you should...
  13. Think of what data you are working with, then...

    Think of what data you are working with, then think of ways they are related, if any.
    Think of what you DO to/with the data, your methods/functions, and find relations between the data and the...
  14. :/ not quite... Preveiew your post before you...

    :/ not quite...
    Preveiew your post before you submit! Honestly do you expect people to read that code, try to decide what it's overall function is supposed to be, and help with it? Most people...
  15. Check this out first....

    Check this out first.
    That will make it easier for people to help you.
  16. post it

    post it
  17. Replies
    13
    Views
    1,924

    Ok, interesting... As soon as I posted the above...

    Ok, interesting...
    As soon as I posted the above message, I returned to the C++ forum and the remaining 5 "new-to-me" posts were back in bold. Furthermore everything seems to function normally now....
  18. Replies
    13
    Views
    1,924

    @ arpsmack & cpjust - yes, I am sure and yes I am...

    @ arpsmack & cpjust - yes, I am sure and yes I am still logged in
    Nothing client side has changed. Cookies are enabled, remember me is checked, I am automatically logged in when the page opens. :...
  19. Replies
    13
    Views
    1,924

    When I log in, new unread topics are in bold (as...

    When I log in, new unread topics are in bold (as expected), but opening any unread post will set all unread posts to the normal type (as if each one had been visited). It did not work this way...
  20. Replies
    4
    Views
    1,406

    For #2 char ascii = 156; std::cout

    For #2


    char ascii = 156;
    std::cout<< ascii;


    Where 156 = £. GOOGLE ascii character map for more.
  21. Replies
    17
    Views
    12,766

    You shouldn't hijack someone's thread, it's not...

    You shouldn't hijack someone's thread, it's not nice. If you have a question, post it and people will help.
    Also consider using the code tags for your code and be sure to indent.
  22. lol (http://m-w.com/dictionary/fallacious)...close

    lol...close
  23. Replies
    3
    Views
    1,232

    so you are asking how to 'do something' .... 'if...

    so you are asking how to 'do something' .... 'if something'
  24. Replies
    15
    Views
    14,770

    lol @ wiki

    lol @ wiki
  25. Replies
    15
    Views
    14,770

    I started out testing for a winner by 3 key...

    I started out testing for a winner by 3 key points in the grid. First the center square. If this mark does not match the current player's token (x or o), you immediately cut 4 possible wins. Then...
Results 1 to 25 of 68
Page 1 of 3 1 2 3