-
Calculo dos coeficientes MFCC em Slilab
Calculo dos coeficientes MFCC em Slilab
- 2022-08-20 21:57:57下载
- 积分:1
-
MSP430晶振布局要领 教你如很布线
MSP430晶振布局要领 教你如很布线-MSP430 crystal layout to experience if you are wiring
- 2022-06-18 21:23:31下载
- 积分:1
-
A good C++ program to management a banch office of a Post office. Very Cool
用vc++编写的邮局支局信息管理源程序,感觉不错!值得下载-A good C++ program to management a banch office of a Post office. Very Cool
- 2022-06-27 03:25:38下载
- 积分:1
-
怎样读取灰度图象的灰度值.txt,在vc++中编译通过
怎样读取灰度图象的灰度值.txt,在vc++中编译通过-How to read the gray value of gray-scale images. Txt, in vc++ Compiled through
- 2023-04-10 18:20:03下载
- 积分:1
-
有关列表控件的使用
有关列表控件的使用-controls on the use list
- 2022-01-30 14:51:55下载
- 积分:1
-
进行开发不可避免有好多问题要解决对初学者来说这是一个所有问题的答案....
进行开发不可避免有好多问题要解决对初学者来说这是一个所有问题的答案.-inevitable for the development of a lot of issues to resolve for beginners, this is an answer to all the problems.
- 2023-04-01 09:05:04下载
- 积分:1
-
home Keng Muhammad laid on SPI, while the guilty 93C46 EEPROM SPI lowest MCU 805...
穆罕默德家放在SPI上,而有罪的是93C46EEPROMSPI最低的单片机8051
- 2022-08-07 01:30:07下载
- 积分:1
-
Able to tell whether the leap year calendar and other functions, it ah soon be a...
万年历 能够分辨闰年等功能,大家快下啊
万年历 能够分辨闰年等功能,大家快下啊-Able to tell whether the leap year calendar and other functions, it ah soon be able to tell whether a leap year calendar and other functions, we soon ah
- 2023-06-17 04:35:03下载
- 积分: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
-
it can read or write jpeg file .
编程实现JPEG文件的读写-it can read or write jpeg file .
- 2022-11-19 20:20:04下载
- 积分:1