-
点对点网络聊天程序之客户端!!!适合网络编程初学者
点对点网络聊天程序之客户端!!!适合网络编程初学者-Point to point net program client!!!
- 2023-08-19 02:40:05下载
- 积分:1
-
有点连线,silverlight
silverlight有点连线,GIS
- 2022-07-07 08:47:31下载
- 积分:1
-
It is no easy task to design a library for generic programming. Java s solution...
It is no easy task to design a library for generic programming. Java s solution has many nice features but is certainly not the only possible approach.
- 2023-05-11 15:55:03下载
- 积分:1
-
Through the creation of a simple small program, so you quickly delete junk files...
通过创建一个简单小程序,使你快速删除垃圾文件,释放你的电脑空间.是你电脑运行流畅-Through the creation of a simple small program, so you quickly delete junk files, freeing space on your computer. Is your computer running smoothly
- 2022-02-06 10:16:38下载
- 积分:1
-
STC12+GPS+GSM+12864
STC12检测GPS和GSM模块的数据在12864上显示
- 2022-09-29 06:35:03下载
- 积分:1
-
文件传送(客户端和服务器端)
一个基于VC++6.0的应用程序,程序功能是实现文件的传送,可以在客户端和服务器端两者之间进行文件传输。
- 2022-12-05 07:45:04下载
- 积分:1
-
一个带有界面的时钟程序,可以准确的显示当前的时间
一个带有界面的时钟程序,可以准确的显示当前的时间-Interface with a clock procedures, can accurately display the current time
- 2022-01-28 06:09:23下载
- 积分:1
-
Linux系统命令及其使用详解
Linux系统命令及其使用详解.doc,程序员必备!文件管理,磁盘管理 压缩管理 进程管理 网络管理
- 2022-02-14 17:04:15下载
- 积分:1
-
there is a defect in only know that the secret and public key
还有一个缺陷就是在只知道密文 x 及公钥(n,e)的情况下,只要将 (x^e) mod n 所得余数 s 再不断地循环操作 s = s^e mod n,此运算不断地循环 e 次之后,很多情况下都可以循环出原文,只是计算量过余多一些罢了。不过有不少情况下,根本都无须循环 e 次,不过对于1024位的 n 级别来说,e 也是一个相当大的数值,所以循环密文的余数以解得原文是有些不现实。 以上内容仅供参考,如有不实,请予更正-there is a defect in only know that the secret and public key-x (n, e) the circumstances, as long as (x ^ e) mod n from the remaining s to continuously cycle operation s = s ^ e mod n, this constant cycle of Operational e occasion, the very many circumstances can be recycled from the original, but I calculated the volume more than just. There are, however, many instances, simply do not need e cycle times, but for 1024 the level n, e is a very large figure, so secret circle the remainder of the text was obtained in the original is a bit unrealistic. The above is for reference only, if not true, I corrected
- 2022-03-22 01:18:28下载
- 积分:1
-
C语言实现贪吃蛇
//: Snake.c
/* * * * * * * * * * * * * * * * * * * * * * *
// Project: RedSnake(贪吃蛇)
// Author: Problue
// Version: 1.0
// Date: 19:55 2012-10-29
* * * * * * * * * * * * * * * * * * * * * * */
#include
#include
#include
#include "pcc32.h"
// 定义地图的尺寸及坐标
#define MAP_WIDTH 32 // 地图宽度
#define MAP_HEIGHT 32 // 地图高度
#define OFFSET_X 1 // 地图左右的边距
#define OFFSET_Y 1 // 地图上下的边距
#define TOTAL_WIDTH (MAP_WIDTH + OFFSET_X * 2) // 窗口宽度
#define TOTAL_HEIGHT (MAP_HEIGHT + OFFSET_Y * 2) // 窗口高度
#define GotoMap(x, y) gotoTextPos((x) * 2, (y))
// 定义地图方格的状态,分别为: 空格、蛇头、蛇身、蛇尾、食物
#define BS_SPACE 0
#define BS_SHEAD 1
#define BS_SBODY 2
#define BS_STAIL 3
#define BS_FOOD 4
// 蛇默认长度
#define SNAKE_MIN_LEN 5
// 定义蛇运动方向: 上、下、左、右
#define DIR_UP 1
#define DIR_DOWN 2
#define DIR_LEFT 3
- 2022-05-15 19:59:34下载
- 积分:1