#ifndef _POINT_H
#define _POINT_H
class Point{
public:
Point();
Point(int x,int y);
~Point();
void move(int newx,int newy);
int getx() const {return x;};
int gety() const {return y;};
static void showcount();
private:
......................
阅读全部 | 2013年12月4日 11:24