摘要: 1 #pragma once 2 #include <iostream> 3 4 using std::cout; 5 6 using std::endl; 7 8 class Point { 9 10 public: 11 Point(int x0 = 0, int y0 = 0); 12 ~Po 阅读全文
posted @ 2023-11-06 09:55 张帅yyds 阅读(15) 评论(0) 推荐(0) 编辑