摘要:源代码: #include <iostream> #include <Windows.h> #include <graphics.h> #include <conio.h> #include "box_man.h" void changeMap(struct _POS *pos,enum _RES
阅读全文
摘要:项目实现准备工作: 1.安装easyX,vs2010版本。 以下是自己写的代码 源代码: #include <iostream> #include <Windows.h> #include <string> #include <graphics.h> #include <conio.h> #incl
阅读全文
摘要:#include <iostream> #include <stdlib.h> using namespace std; int main(void) { int *p; int row,col; int i,j,k=1; cout<<"Input number of row:\n"; cin>>r
阅读全文
摘要:#include <iostream> #include <Windows.h> #include <string> using namespace std; int main(void) { string str1; string str2; string str3; cout<<"请输入一段文字
阅读全文
摘要:#include <iostream> #include <Windows.h> #include <string> #include <stdio.h> using namespace std; int main(void) { string a="hello!"; string b="world
阅读全文
摘要:5.1搭建图形开发环境 图形开发环境 使用 MFC 或 WPF 使用方便, 但是需要先熟悉 C++, 仅适用于 Windows 平台. 使用跨平台 QT 跨平台, 也要先熟悉 C++. 使用图形库 OpenGL OpenGL 非常强大, 很多大型游戏引擎就直接使用 OpenGL 绘制图像缺点: 太复
阅读全文
摘要:分析项目需求 黑客打开这个攻击系统后,首先看到的就是一个“功能菜单”。 以便让黑客选择所需要的功能。 假设需求如下: 1.网站404攻击 2.网站篡改攻击 3.网站攻击记录 4.DNS攻击 5.服务器重启攻击 项目实现 创建一个空项目CP1 添加文件admin.c #include <iostrea
阅读全文