11 2021 档案

摘要:#include <iostream> #include <typeinfo> // definitation of Graph class Graph { public: void draw() { std::cout << "Graph::draw() : just as an interfac 阅读全文
posted @ 2021-11-30 15:26 yxg208 阅读(54) 评论(3) 推荐(0)
摘要:#include"vector_int.hpp" int main(){ using namespace std; int n=5; Vector_int x(n); Vector_int k(n, 6); Vector_int y(k); y.at(0)=999; cout<<y.at(0)<<e 阅读全文
posted @ 2021-11-09 20:27 yxg208 阅读(20) 评论(3) 推荐(0)
摘要:#ifndef INFO_HPP #define INFO_HPP #include<string> #include<iostream> using namespace std; class info{ public: info(string na,string co,string ci,int 阅读全文
posted @ 2021-11-03 12:22 yxg208 阅读(13) 评论(3) 推荐(0)