摘要: 实验任务1 程序源码 point.hpp #pragma once #include <iostream> using std::cout; using std::endl; class Point { public: Point(): x{0}, y{0} {} Point(int x0, int 阅读全文
posted @ 2022-11-02 19:02 阑夜风华 阅读(27) 评论(0) 推荐(0) 编辑