public
Authored by avatar bzctoons :alien:

Simple class

simple-point.cpp 396 bytes
#include <iostream>

using namespace std;

class Point{
    int m_x,m_y;
public:

    void show(){
        cout << "Point: " << m_x << "," << m_y << endl;
    }

    void setXY(int x, int y){
        m_x = x;
        m_y = y;
    }
};

int main()
{
    Point p1,p2,p3;

    p1.setXY(10,10);
    p1.show();

    p2.setXY(20,20);
    p2.show();

    p3.setXY(30,30);
    p3.show();
    return 0;
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment