fqy131314

05 2022 档案

用C++实现推箱子(小人和推着箱子能过地板版)
摘要:源代码: #include <iostream> #include <Windows.h> #include <graphics.h> #include <conio.h> #include "box_man.h" void changeMap(struct _POS *pos,enum _RES 阅读全文

posted @ 2022-05-27 13:57 会飞的鱼-blog 阅读(27) 评论(0) 推荐(0) 编辑

推箱子小游戏(c++实现)
摘要:项目实现准备工作: 1.安装easyX,vs2010版本。 以下是自己写的代码 源代码: #include <iostream> #include <Windows.h> #include <string> #include <graphics.h> #include <conio.h> #incl 阅读全文

posted @ 2022-05-24 22:02 会飞的鱼-blog 阅读(103) 评论(0) 推荐(0) 编辑

根据输入的二位数组的行数和列数,动态地为该数组分配存储空间;其次,向二维数组中输入数据;最后输出该数组中的所有原色
摘要:#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 阅读全文

posted @ 2022-05-21 14:35 会飞的鱼-blog 阅读(4) 评论(0) 推荐(0) 编辑

编写一个程序,使用cin从标准输入输入3段文字,保存到一段动态分配的内存中,每一段文字输入后,必须要及时保存到动态内存中。
摘要:#include <iostream> #include <Windows.h> #include <string> using namespace std; int main(void) { string str1; string str2; string str3; cout<<"请输入一段文字 阅读全文

posted @ 2022-05-21 14:09 会飞的鱼-blog 阅读(7) 评论(0) 推荐(0) 编辑

编写一个程序,链接两个字符串字面常量,将结果保存在一个动态分配的char数组中,重写这个程序,连接两个标准string对象
摘要:#include <iostream> #include <Windows.h> #include <string> #include <stdio.h> using namespace std; int main(void) { string a="hello!"; string b="world 阅读全文

posted @ 2022-05-21 13:44 会飞的鱼-blog 阅读(7) 评论(0) 推荐(0) 编辑

黑客攻击系统(开发图形登录菜单)
摘要:5.1搭建图形开发环境 图形开发环境 使用 MFC 或 WPF 使用方便, 但是需要先熟悉 C++, 仅适用于 Windows 平台. 使用跨平台 QT 跨平台, 也要先熟悉 C++. 使用图形库 OpenGL OpenGL 非常强大, 很多大型游戏引擎就直接使用 OpenGL 绘制图像缺点: 太复 阅读全文

posted @ 2022-05-21 13:17 会飞的鱼-blog 阅读(31) 评论(0) 推荐(0) 编辑

C++入门实现黑客攻击系统(准备工作)
摘要:分析项目需求 黑客打开这个攻击系统后,首先看到的就是一个“功能菜单”。 以便让黑客选择所需要的功能。 假设需求如下: 1.网站404攻击 2.网站篡改攻击 3.网站攻击记录 4.DNS攻击 5.服务器重启攻击 项目实现 创建一个空项目CP1 添加文件admin.c #include <iostrea 阅读全文

posted @ 2022-05-21 12:59 会飞的鱼-blog 阅读(270) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

导航

统计

点击右上角即可分享
微信分享提示