[r]
(1)//============================================================================ // Name : class_point.cpp
// Author : Nguyen Huu The // Version :
// Copyright : Your copyright notice
// Description : class in C++, Eclipse IDE for C/C++, Ansi-style
//============================================================================ #include <stdio.h>
//#include <iostream.h> #include <iostream> using namespace std; class Point {
private: int x, y; public:
Point(int xx, int yy){
cout<<"Diem duoc tao"<<endl; x = xx; y = yy;
}
void Print() {
cout<<"Diem ("<<x<<","<<y<<")"<<endl; }
};