摘要: task5: //point.hpp 1 #pragma once 2 class point { 3 public: 4 point() {} 5 point(int xx) {x=xx; } 6 int return_x(){ return x; } 7 private: 8 int x; 9 阅读全文
posted @ 2022-11-05 13:44 jww12 阅读(38) 评论(0) 推荐(0)
摘要: task5: //info.hpp #include<iostream> #include<string> using namespace std; class info { private: string nickname, contact, city; int n; static int a; 阅读全文
posted @ 2022-10-25 20:33 jww12 阅读(22) 评论(0) 推荐(1)