class coord { int x, int y; public: coord(){} coord(int a, int b){x=a; y=b;} coord add(coord c) { coord temp ; temp.x = this->x + c.x ;.
確定! 回上一頁