-
Tetris-coded-by-c
简明易懂的C语言俄罗斯方块,编程语言C,源码,未编译,TC 通过。(Tetris: programmed by c, which is concise and simple, so it is an easy way to learn C with strengthening your capabiliy in 2D game. it is source code,and has been tested by TC)
- 2012-07-13 17:47:40下载
- 积分:1
-
2
题目:从键盘输入一些字符,逐个把它们送到磁盘上去,直到输入一个#为止。(Title: enter some characters from the keyboard, and one by one they go to the disk until the input a#.)
- 2013-05-06 12:04:31下载
- 积分:1
-
阿拉伯语字体包括4个字库,做软件开发或嵌入式使用
阿拉伯语字体包括4个字库,做软件开发或嵌入式使用-Arabic fonts including four font, do software development or embedded use
- 2022-03-14 06:34:40下载
- 积分:1
-
C# 清空回收站的源码实例
C# 清空回收站,这个功能不用多介绍了吧,你懂的,具体的实现请看以下代码:
const int SHERB_NOCONFIRMATION = 0x000001;//整型常量在API中表示删除时没有确认对话框
const int SHERB_NOPROGRESSUI = 0x000002;//在API中表示不显示删除进度条
const int SHERB_NOSOUND = 0x000004;//在API中表示删除完毕时不播放声音
[DllImportAttribute("shell32.dll")]//声明API函数
private static extern int SHEmptyRecycleBin(IntPtr handle, string root, int falgs);
private void button1_Click(object sender, EventArgs e)
{
//清空回收站
SHEmptyRecycleBin(this.Handle, "", SHERB_NOCONFIRMATION + SHERB_NOPROGRESSUI + SHERB_NOSOUND);
}
- 2022-12-15 14:50:03下载
- 积分:1
-
visual basic powerpoint sample programming
visual basic powerpoint sample programming
- 2022-07-14 05:34:09下载
- 积分:1
-
X264: A HIGH PERFORMANCE H.264/AVC ENCODER 详细介绍了x264采用的技术细节,对理解x264源码大有好处。...
X264: A HIGH PERFORMANCE H.264/AVC ENCODER 详细介绍了x264采用的技术细节,对理解x264源码大有好处。
- 2022-10-01 18:25:03下载
- 积分:1
-
数值分析课件习题部分答案(1)
HIT numerical analysis
- 2018-11-21 23:02:28下载
- 积分:1
-
代码
说明: 探讨无源时差定位情形下,星形,菱形,倒三角形布站方式对于定位精度的影响。主要讨论主站高度,目标高度,目标距离,站间距对于定位精度的影响。(This paper discusses the influence of star, diamond and inverted triangle station layout on location accuracy in passive TDOA location.)
- 2020-07-20 22:45:06下载
- 积分:1
-
CEEMDAN_V00
说明: EMD及其一系列改进算法,具有去噪和信号分解功能。(EMD and its series of improved algorithms with denoising and signal decomposition functions.)
- 2020-12-26 20:21:51下载
- 积分:1
-
纯C写的通用数据库代码
纯C写的小型通用数据库代码,研究数据结构很不错的参考实例,模拟交互式的SOL的基本功能:动态建表,组合查询,删除,添加,更新、支持的数据类型为:char(字符型) int(整数型) double(浮点型) string(字符串型)。压缩包内附有设计PPT,学习C语言底层很好的例子,运行时请打开CMD命令提示符环境,示例可新建、删除数据库等操作。
- 2022-10-27 21:30:08下载
- 积分:1