CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: cootoncandyliz

Search: Search took 0.04 seconds.

  1. Replies
    9
    Views
    10,847

    Re: Help with Cartesian class

    Also, what is the syntax for writing a memberwise assignment function within a class?
  2. Replies
    9
    Views
    10,847

    Re: Help with Cartesian class

    What type of debugger are we talking about?
  3. Replies
    9
    Views
    10,847

    Re: Help with Cartesian class

    Okay so I made some more changes to my code and it runs now but it doesn't allow the user to enter coordinates. What am I doing wrong?

    #include <iostream>
    #include <istream>
    #include <ostream>
    ...
  4. Replies
    9
    Views
    10,847

    Re: Help with Cartesian class

    Okay so I did that, but now I get these errors
    prog.cpp: In function ‘int main()’:
    prog.cpp:45:16: error: ‘class Cartesian’ has no member named ‘c’
    cin >> coord1.c;
    ^...
  5. Replies
    9
    Views
    10,847

    Help with Cartesian class

    I am trying to make a program with a Cartesian class that allows the user to enter 2 coordinates and displays these coordinates. When I try to compile it, I get a message saying the x and y in x=c...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured