摘要: 1 #include 2 using namespace std; 3 class point 4 { 5 int x; 6 int y; 7 public : 8 point () 9 { 10 x=y=0; 11 } 12 point (int a,int b) 13 { ... 阅读全文