摘要: 1 #ifndef GRAPH_H 2 #define GRAPH_H 3 4 // 类Graph的声明 5 class Graph { 6 public: 7 Graph(char ch, int n); // 带有参数的构造函数 8 void draw(); // 绘制图形 9 void cha 阅读全文
posted @ 2018-04-22 18:52 一头 阅读(541) 评论(3) 推荐(0) 编辑