-
LED
完成数码管的计时功能。同时实现LED灯的流水变化。(Complete digital control of the timing function.)
- 2013-04-30 15:26:49下载
- 积分:1
-
SX01
说明: c常用函数,适合初学者使用,里面有详细的注释(c common function, for beginners, there are detailed notes)
- 2010-04-14 12:52:41下载
- 积分:1
-
Greedy-algorithm
贪心算法解决木棒覆盖最多点的问题,食用一定量定长的木棒,使其覆盖尽可能多的点。(Solve the problem of sticks to cover some greedy algorithm)
- 2016-05-23 20:06:31下载
- 积分:1
-
328200_UartAssist
串口助手,帮助你解决你想解决的一切问题与麻烦(Serial assistant to help you solve all the problems you want to solve and trouble)
- 2011-07-18 17:01:08下载
- 积分:1
-
VC_STK
c++与STKX组件集成,用MFC完成,主要包括创建场景,新建卫星(c++ components integrated with STKX)
- 2020-09-21 14:27:51下载
- 积分:1
-
main
C++ code for hill climbing
- 2015-03-22 22:08:12下载
- 积分:1
-
C# 在程序中使用指针、十字光标、浮动窗口等不安全代码
C# 在程序中使用指针、十字光标、浮动窗口等不安全代码的实例,单击以下按钮会演示出对应功能:
在程序中显示一个浮动帮助窗口
显示等待光标
显示十字光标
对于功能实现,逐一分享源代码如下:在程序中使用指针等不安全代码:
var MyFileName = "C:atlog.txt";
var MyReader = new MyReaderClass(MyFileName);
const int MyBuffSize = 128;
byte[] MyBuffer = new byte[MyBuffSize];
ASCIIEncoding MyEncoder = new ASCIIEncoding();
var MyInfo = MyFileName + "的内容如下:";
while (MyReader.Read(MyBuffer, 0, MyBuffSize) != 0)
MyInfo += "
" + MyEncoder.GetString(MyBuffer);
MessageBox.Show(MyInfo, "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
private void button2_Click(object sender, EventArgs e)
{//在程序中显示一个浮动帮助窗口
Help.ShowPopup(this, "提高程序开发效率、拓展软件应用领域", new Point(300, 350));
}
private void button3_Click(object sender, EventArgs e)
{//显示等待光标
this.Cursor = Cursors.WaitCursor;
}
private void button4_Click(object sender, EventArgs e)
{//显示十字光标
this.Cursor = Cursors.Cross;
}
- 2023-05-20 08:40:02下载
- 积分:1
-
proteus仿真25例子
这是proteus仿真例子,适合初学者以及爱好者(This is a simulation example of proteus, suitable for beginners and enthusiasts)
- 2019-03-22 16:16:52下载
- 积分:1
-
Cholesky
Cholesky分解的C语言程序,当年的大学作业程序(C source code for Cholesky Method)
- 2021-01-07 15:08:53下载
- 积分:1
-
代码计数器
主要用于计算程序员编程时所写的代码的行数,可以很方便的让程序员查看自己所写的代码的行数,方便程序员计算自己的代码量。是一个很好用的东西,很高兴能和大家分享。
- 2022-03-22 19:24:01下载
- 积分:1