摘要: #include <bits/stdc++.h> using namespace std; class Count { private: int cnt; public: Count() :cnt(1) {} ~Count() = default; void addcount() { ++cnt; 阅读全文
posted @ 2023-09-15 21:49 SuperTonyy 阅读(142) 评论(0) 推荐(0)