-
排块游戏
排块游戏,利用vs2013.net4.0平台下开发,使用c#开发的winform界面的小游戏。
- 2022-05-26 11:07:28下载
- 积分:1
-
串口助手软件
虚拟串口助手。自己使用C#来编写的额。这也是我刚开是的时候找到的一些对初学者最号的源代码
- 2022-02-01 13:29:05下载
- 积分:1
-
一个ftp客户端程序。界面精美,由用户名密码登陆站点,可上传下载文件,对FTP站点文件进行操作等。...
一个ftp客户端程序。界面精美,由用户名密码登陆站点,可上传下载文件,对FTP站点文件进行操作等。-An ftp client program. Beautiful interface, user name password from landing site to upload the download file on the FTP site file operation.
- 2022-05-21 12:02:03下载
- 积分:1
-
十大软件滤波算法
十大软件滤波算法,包括有限副滤波 中位值滤波法 算术平均滤波法 递推平均滤波法(又称滑动平均滤波法) 中位值平均滤波法(又称防脉冲干扰平均滤波法)限幅平均滤波法 一阶滞后滤波法 加权递推平均滤波法 消抖滤波法 限幅消抖滤波法
- 2022-03-30 23:47:30下载
- 积分:1
-
排序系统设计
功能:设编号为1,2,3,……,n的n(n>0)个人按顺时针方向围坐一圈,每个人持有一个正整数密码。开始时任选一个正整数做为报数上限m,...
排序系统设计
功能:设编号为1,2,3,……,n的n(n>0)个人按顺时针方向围坐一圈,每个人持有一个正整数密码。开始时任选一个正整数做为报数上限m,从第一个人开始顺时针方向自1起顺序报数,报到m是停止报数,报m的人出列,将他的密码作为新的m值,从他的下一个人开始重新从1报数。如此下去,直到所有人全部出列为止。令n最大值取30。要求设计一个程序模拟此过程,求出出列编号序列。
-Sorting system design features: Let numbered 1,2,3, ... ..., n of the n (n> 0) individuals sitting clockwise circle, each person holds a positive integer password. The beginning of a positive integer as reported optional maximum number of m, starting from the first person in a clockwise direction starting from a sequence reported the number of m is to stop the newspaper to report the number of people who reported m out of the column, his password as a new m value, the next person start from his re-reported from a number of. If things go on, until all of the column until all the up. Make n take the maximum 30. To design a program to simulate this process, find out the column number sequence.
- 2022-04-24 01:11:03下载
- 积分:1
-
Meng Ling.NET system t.rar automatic updates from the website www.code173.com
梦凌.NET网站自动更新系统t.rar
来自网站www.code173.com-Meng Ling.NET system t.rar automatic updates from the website www.code173.com
- 2022-02-03 10:45:33下载
- 积分:1
-
MSP430 IO控制程序
MSP430F149的流水灯控制程序,首先包含了时钟配置,其次是IO控制功能。把IO设置为输出口,根据LED的高点亮,或者低电量,设置IO状态,点亮LED。
- 2022-03-25 00:23:06下载
- 积分:1
-
C# 键盘Ctrl+g控制蜂鸣器播放声音
Visual C#播放声音,运行程序后,操作键盘上的Ctrl+g组合键发出蜂鸣声...这里的拖放声音是蜂鸣声,从音箱里发出,并不是从机箱的蜂鸣器发声。实现的过程和细节代码如下:
//导入 Windows Beep() API 函数
[DllImport("kernel32.dll")]
private static extern bool Beep(int freq, int dur);
// 定义PlaySound()要使用的常数
public const int SND_FILENAME = 0x00020000;
public const int SND_ASYNC = 0x0001;
// 导入 Windows PlaySound() 函数
[DllImport("winmm.dll")]
public static extern bool PlaySound(string pszSound,
int hmod,
int fdwSound);
[STAThread]
static void Main(string[] args)
{
// 使用Ctrl+g发出蜂鸣声
Console.Write("a");
Console.WriteLine("使用Ctrl+g发出蜂鸣声...");
Console.ReadLine();
// 使用 Windows API 发出蜂鸣声
Beep(800, 200);
Console.WriteLine("使用 Windows API 发出蜂鸣声...");
Console.ReadLine();
// 播放bells.wav文件
PlaySound("bells.wav",
0,
SND_FILENAME | SND_ASYNC);
Console.WriteLine("播放bells.wav文件...");
Console.ReadLine();
}
- 2022-05-23 17:14:52下载
- 积分:1
-
使用VC++与http服务器通讯
使用vc++写的与web服务器通讯的程序,可以通过Get或Post提交请求,接收应答,或上传文件到服务器,本程序为VS 2008环境,可以直接编译运行。是通过socket与服务器通讯的!
- 2022-03-09 23:08:02下载
- 积分:1
-
使用TMS320C6748测通道UPP模块
最近在测试的TMS320C6748的UPP功能模块,本人亲测,工程完整可用,希望对学习DSP高速接口的朋友有所帮助
- 2022-03-18 02:37:17下载
- 积分:1