#include<iostream.h> using namespace std; class point { public: int x; int y; void print() { cout<<"x="<<x<<endl; cout<<"y="<<y<<endl; } ...
確定! 回上一頁