-
模拟赛题目
包括标准程序与数据
可能用得着
模拟赛题目
包括标准程序与数据
可能用得着-Simulation game topics include standard procedures, and data may be Yongde Zhao
- 2023-07-23 05:50:05下载
- 积分:1
-
速度挺快的超大数乘法程序
速度挺快的超大数乘法程序-speed very quickly large number multiplication procedure
- 2022-01-31 19:01:09下载
- 积分:1
-
SUN Xin teachers on the network programming, programs written in my personal not...
孙鑫老师讲解的网络编程,程序中我个人写的注释特别详细,很适合初学者学习-SUN Xin teachers on the network programming, programs written in my personal notes in particular detail, it is suitable for beginners to learn
- 2023-09-08 19:20:03下载
- 积分:1
-
Java 计算器
这是简单计算器创造的创作者与 Java 在 Netbeans 中,计算器可以做基本的计算,如加法。减法除法和乘法
- 2023-04-23 13:20:04下载
- 积分: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
-
功能坐标转换到从地心LLH
Function convert the coordinates from ECEF to LLH
- 2022-02-11 16:10:08下载
- 积分:1
-
c++写的王子棋,带简单人工智能,基于win32sdk
c++写的王子棋,带简单人工智能,基于win32sdk-c++ written by Prince game, with simple artificial intelligence, based on win32sdk
- 2023-08-27 11:20:03下载
- 积分:1
-
peak模拟编程
peak模拟编程-peak Simulation Programming
- 2022-06-15 02:44:28下载
- 积分:1
-
zinnia汉字分析
在线手写汉字识别源码 Zinnia介绍。读取用户输入的手写笔迹 可以自由设置手写框的大小。在内部处理中所有笔迹都被转化为1*1的手写框内的坐标来处理。通过Character类的add方法增加坐标。add的第一个参数为当前笔画,第二个参数为坐标点。通过重复使用add方法可以加入多笔输入笔迹。其中每笔包含多个坐标点数据。
- 2023-06-15 06:35:05下载
- 积分:1
-
1时间函数举例4,一个猜数游戏,判断一个人反应快慢。
2有两个磁盘文件A和B,各存放一行字母,要求把这两个文件中的信息合并(按字母顺序排列)输出到一个新文件...
1时间函数举例4,一个猜数游戏,判断一个人反应快慢。
2有两个磁盘文件A和B,各存放一行字母,要求把这两个文件中的信息合并(按字母顺序排列)输出到一个新文件C中。-A function of time, for example 4, a guess the number of games, judge a person reaction speed. 2 There are two disk files A and B, the storage of his letters, these two documents requested information in the merger (in alphabetical order) output to a new file in C.
- 2022-02-05 20:30:00下载
- 积分:1