-
m
说明: MATLAB与C#VisualC++语言混合编程的实现(Realization of hybrid programming language of MATLAB and C# VisualC++)
- 2013-03-27 18:57:34下载
- 积分:1
-
kemodel
说明: 一个对Fluent中k-e湍流模型的修正udf程序,欢迎提出意见。(One pair ke turbulence model in Fluent udf amendment procedures, suggestions are welcome.)
- 2021-01-02 15:08:57下载
- 积分:1
-
refactor
序列匹配c++实现,可以帮助理解序列匹配算法(Sequence matching c++ implementation can help to understand the sequence matching algorithm)
- 2014-02-15 20:38:24下载
- 积分:1
-
C#设计模式
C#设计模式图书教程分享
希望对大家有所帮助(C# design patterns, books, tutorials, sharing)
- 2017-08-23 12:06:12下载
- 积分:1
-
mBot程序集
说明: mbot,scratch程序案例,可以用来学习mbot控制。(Mbot, scratch program case, can be used to learn mBot control.)
- 2020-06-25 17:00:01下载
- 积分:1
-
Form-call-Console
使用c#的form程序调用console窗口,可以显示很多动态信息(Form called the Console, use the Form to invoke the Console interface, dynamic output state information, etc)
- 2015-05-11 22:45:45下载
- 积分:1
-
cc2530-datasheet
cc2530zigbee芯片英文资料,数据手册(cc2530zigbee chip information in English, Data Sheet)
- 2013-08-24 15:02:02下载
- 积分:1
-
MeitiShizhong
该程序为多媒体定时技术,通过该程序可以实现某函数的周期调用(The program for multimedia timing technology, the program can be achieved through the cycle of a function call)
- 2009-09-23 10:00:44下载
- 积分:1
-
WIN VNC 源码
VNC 源码 可以学习参考开发 大名鼎鼎的VNC远程监控软件 的客户端源码.-famous VNC remote monitoring software prepared by the Delphi client source.
- 2022-07-18 23:52:37下载
- 积分:1
-
51单片机俄罗斯方块源代码
# include
# include
# define N 4
# define time 500
# define uchar unsigned char
sbit keyenable=P3^6;
sbit up=P3^2;
sbit down=P3^4;
sbit right=P3^3;
sbit left=P3^1;
uchar code table[N+8]={0,0,0,0,1,2,4,8,16,32,64,128};
char x[4];
char y[4];
char m[8][8]={0};
uchar p[8];
int n=0;
/**************
延时函数
***************/
void delay(char MS)
{
char us,usn;
while(MS!=0)
{
usn = 0;
while(usn!=0)
{
us=0xff;
while (us!=0){us--;};
usn--;
}
MS--;
}
}
/***************
判断是否碰撞函数
**************/
bit coll(void)
{
bit k=0;
int i;
for(i=0;i
- 2023-01-11 14:50:04下载
- 积分:1