09 2022 档案
摘要:实验1.2 1 #include <iostream> 2 using std::cout; 3 using std::endl; 4 class Point{ 5 public: 6 Point(int x0=0,int y0=0); 7 Point(const Point& p); 8 ~Poi
阅读全文
摘要:#include <iostream> #include <string> #include <vector> int main() { using namespace std; string s1; string s2{"c plus plus"}; string s3{s2}; string s
阅读全文