2019年4月23日

摘要: // 类graph的实现 #include "graph.h" #include using namespace std; // 带参数的构造函数的实现 Graph::Graph(char ch, int n): symbol(ch), size(n) { } // 成员函数draw()的实现 // 功能:绘制size行,显示字符为symbol的指定图形样式 void Grap... 阅读全文
posted @ 2019-04-23 21:09 沐尘河 阅读(80) 评论(1) 推荐(0) 编辑

导航