实验结论: 1)Part1 验证性内容:以多文件结构组织的项目文件示例:在画布上可以上下左右移动的小球 Ctrl C+V之后编译运行出现了如下界面: (假装有图片) 2)Part2 基于已有信息,补足并扩充程序。 在graph文件夹里提供有三个文件: graph.h (类Graph的声明) grap ...
分类:
编程语言 时间:
2019-04-26 00:39:22
阅读次数:
143
1 using System.ComponentModel; 2 using System.Windows.Forms; 3 using app.Main.Graph; 4 using app.KeyBoards.Events; 5 6 namespace app.Measure.Actions 7 ...
part2: #ifndef GRAPH_H#define GRAPH_H class Graph {public: Graph(char ch, int n); void draw();private: char symbol; int size;}; #endif Graph.h #includ ...
分类:
其他好文 时间:
2019-04-24 00:35:57
阅读次数:
156
part2 #include <iostream> #include "graph.h" using namespace std; int main() { Graph graph1('*',5); graph1.draw(); system("pause"); system("cls"); Gra ...
分类:
其他好文 时间:
2019-04-24 00:31:28
阅读次数:
128
part2 #ifndef GRAPH_H #define GRAPH_H // 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char symbol ...
分类:
其他好文 时间:
2019-04-24 00:12:37
阅读次数:
141
#ifndef GRAPH_H #define GRAPH_H class Graph { public: Graph(char ch, int n); void draw(); private: char symbol; int size; }; #endif #include "graph.h" ...
分类:
其他好文 时间:
2019-04-24 00:01:05
阅读次数:
169
part1 Part2 #include <iostream> #include "graph.h" using namespace std; int main() { Graph graph1('*', 5); graph1.draw(); system("pause"); Graph graph ...
分类:
其他好文 时间:
2019-04-23 23:55:45
阅读次数:
276
2. #include "graph.h" #include <iostream> using namespace std; Graph::Graph(char ch, int n): symbol(ch), size(n) { } void Graph::draw() { int i,j,k; f ...
分类:
其他好文 时间:
2019-04-23 23:54:50
阅读次数:
241
1. 确定Django环境可以正常运行,环境搭建见: "Linux 搭建Nginx+uwsgi+Django环境" 2. 安装 wechatpy[cryptography] 3. 修改settings.py 1. 接入微信公众号的连接去掉csrf验证,详情参考: "解决Django+Vue前后端分离 ...
分类:
微信 时间:
2019-04-23 12:48:03
阅读次数:
1132
2. // 类graph的实现 #include "graph.h" #include <iostream> using namespace std; // 带参数的构造函数的实现 Graph::Graph(char ch, int n): symbol(ch), size(n) { } // 成员 ...
分类:
其他好文 时间:
2019-04-23 00:17:05
阅读次数:
140