Search:

Type: Posts; User: Kudose

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    2,067

    Hard to break it, but I did. This doesn't seem...

    Hard to break it, but I did.

    This doesn't seem to break:


    #include <iostream>
    #include <math.h>
    using namespace std;

    int main(){
  2. Replies
    4
    Views
    2,067

    Thanks! Not sure what this means. ...

    Thanks!



    Not sure what this means.

    Referring to previously working code, I fixed it with this:


    #include <iostream>
  3. Replies
    4
    Views
    2,067

    Is it prime? Logic error

    I've got a logic error in here and I am having trouble figuring it out.

    Can someone please point out the obvious as I cannot see it.


    #include <iostream>
    #include <math.h>
    using namespace...
  4. Thread: adding problem

    by Kudose
    Replies
    5
    Views
    1,521

    It's perfectly fine that it's all messed up. ...

    It's perfectly fine that it's all messed up. It's a part of learning. How are you teaching yourself C++?
  5. Thread: adding problem

    by Kudose
    Replies
    5
    Views
    1,521

    Sorry for all the posts ... how are you learning...

    Sorry for all the posts ... how are you learning C++? Your program is more mangled than any other I've ever seen.
  6. Thread: adding problem

    by Kudose
    Replies
    5
    Views
    1,521

    For your switch, you are testing for product...

    For your switch, you are testing for product which hasn't been assigned a value.
  7. Thread: adding problem

    by Kudose
    Replies
    5
    Views
    1,521

    Your right (rvalue) and left (lvalue) values are...

    Your right (rvalue) and left (lvalue) values are switched.


    int ans1 = A + B;
    int ans2 = C + D;
    int ans3 = ans1 + ans2;

    The rvalue should be where you do your equations and the lvalue should...
  8. Replies
    3
    Views
    3,094

    I had to bite my tongue when I saw a post from...

    I had to bite my tongue when I saw a post from someone in a developing country asking for the complete code from people they are taking jobs from.
  9. Replies
    5
    Views
    5,214

    Just because he/she didn't spell it out for you...

    Just because he/she didn't spell it out for you doesn't mean he/she didn't point you in the right direction.
  10. Replies
    24
    Views
    23,001

    Thanks!

    Thanks!
  11. Replies
    24
    Views
    23,001

    Would you allow any of this code to be previewed?

    Would you allow any of this code to be previewed?
  12. Replies
    24
    Views
    23,001

    Useful link: The LEX & YACC Page...

    Useful link: The LEX & YACC Page
  13. Replies
    24
    Views
    23,001

    I have not proceeded to document anything yet. I...

    I have not proceeded to document anything yet. I was waiting to learn a little more about the process and tools available. I have a good idea of what syntax and features (dynamic typing, object...
  14. Replies
    24
    Views
    23,001

    References to those books are what I am asking...

    References to those books are what I am asking for.
  15. Replies
    24
    Views
    23,001

    I appreciate your responses. I would like to...

    I appreciate your responses. I would like to create a simple interpreter. Like PHP3 or Python 1.0 or Perl 1. Granted the three languages are vastly different at the stages mentioned, but they all...
  16. Replies
    24
    Views
    23,001

    I get the jist of what an interpreted language is...

    I get the jist of what an interpreted language is ... a source program fed through another program to generate or execute input/output. I guess I am looking for advice or resources on how to create...
  17. Replies
    24
    Views
    23,001

    So what you're basically saying, brewbuck, is...

    So what you're basically saying, brewbuck, is that they invented it and there is no way to have learned how to do it in a book ... ?

    I think the answer is not that they used "a book", but that...
  18. Replies
    24
    Views
    23,001

    Thanks for your answer and that book looks...

    Thanks for your answer and that book looks interesting. I hadn't found mention of it elsewhere.
  19. Replies
    24
    Views
    23,001

    I find that hard to believe. They had to have...

    I find that hard to believe. They had to have read something. PHP is/was written in C, so they had to have learned C and read a few C books.
  20. Replies
    24
    Views
    23,001

    How to create a script interpreter using C++

    I would like to create an interpreted language for personal use (who knows where it would go) that would have similar language syntax to PHP and Python using C++. Mainly because I love PHP syntax...
  21. Thread: Finding friends

    by Kudose
    Replies
    5
    Views
    1,237

    Granted that book is a bit dry, I think the...

    Granted that book is a bit dry, I think the writer knows what he's talking about, since he created C++.
  22. Replies
    32
    Views
    4,054

    Is there a way to rename my squareroot to sqrt...

    Is there a way to rename my squareroot to sqrt which calls the std libraries sqrt?
  23. Replies
    32
    Views
    4,054

    That package was missing a couple files...

    That package was missing a couple files Code::Blocks needs so I downloaded the MinGW installer 5.1.4 and when to Settings -> Compiler and Debugger ... Clicked the Toolchain tab and altered the MinGW...
  24. Replies
    32
    Views
    4,054

    Thanks, I'll give that a shot before I abandon...

    Thanks, I'll give that a shot before I abandon Code::Blocks.
  25. Replies
    32
    Views
    4,054

    I think I am going to use a different IDE ......

    I think I am going to use a different IDE ... changing any options in Code::Blocks eats up 50% of all 4 of my processor cores and takes 5 seconds to open. Also, after I changed the compiler I can no...
Results 1 to 25 of 94
Page 1 of 4 1 2 3 4