-
Constant & Macros in OpenGL
Constant & Macros in OpenGL
- 2022-08-16 16:06:56下载
- 积分:1
-
用C语言写的图书信息管理程序
有浏览,查询,回收站等功能...
用C语言写的图书信息管理程序
有浏览,查询,回收站等功能-Using C language to write the book information management program has browse, query, Recycle Bin and other functions
- 2022-03-22 01:55:59下载
- 积分:1
-
improved the Visitor's most functions and error, the new labeling function,...
改进了网友提出的绝大部分功能,和错误,新增加了标签功能,详细请看 标签文件夹,可以实现绝大多数自定义的版块
默认帐号:admin
密码:admin888 -improved the Visitor"s most functions and error, the new labeling function, see the folder labels can be achieved since the vast majority of front-page definition of the default Account : admin Password : admin
- 2022-04-01 02:20:44下载
- 积分:1
-
一个计算线性方程组的源程序,可以有多种算法选择
一个计算线性方程组的源程序,可以有多种算法选择-a calculation of linear equations of the source can be many choices Algorithm
- 2023-03-23 02:40:04下载
- 积分:1
-
自己动手在CE下实现打印功能,可以作为一个参考下载
自己动手在CE下实现打印功能,可以作为一个参考下载-their own hands under the CE Print function can be used as a reference to see if the download
- 2022-08-08 07:01:10下载
- 积分:1
-
labview 编写的 TCP写数据 学习ING
labview 编写的 TCP写数据 学习ING-labview write data TCP prepared to learn ING
- 2022-10-02 15:20:03下载
- 积分:1
-
这是常用的直流电机的驱动电路,非常的简单,我都用过了,很好的。...
这是常用的直流电机的驱动电路,非常的简单,我都用过了,很好的。-This is commonly used in DC motor drive circuit, very simple, I have used, and very good.
- 2022-01-31 12:37:13下载
- 积分:1
-
这是《数据结构》的课程实习报告,内容包括报告书写格式、源代码、以及测试结果...
这是《数据结构》的课程实习报告,内容包括报告书写格式、源代码、以及测试结果-This is a "data structure," the report internship programs, including report writing format, source code, and test results
- 2023-06-10 13:15:03下载
- 积分:1
-
一个不错的哦????呵呵!下吧!哈哈够了吗/
一个不错的哦????呵呵!下吧!哈哈够了吗/-a good Oh Oh! Next! Haha enough yet /
- 2023-07-28 05:45:03下载
- 积分:1
-
Visual C# 韩信点兵算法演示源码
韩信点兵是一道古代数学题,内容是:韩信带兵不足百人,三人一行排列多一个,七人一行排列少两个,五人一行排列正好。相关代码:
int a = 0, b = 0, c = 0;//定义变量
for (int i = 1; i < 100; i++)//遍历
{
Math.DivRem(i, 3, out a);//3行一列时取余
Math.DivRem(i, 5, out b);//5行一列时取余
Math.DivRem(i, 7, out c);//7行一列时取余
if (a == 1 && b == 0 && c == 5)//如果3种方式的余数符合要求
{
textBox1.Text = i.ToString();//显示人数
return;
}
- 2022-01-25 14:48:17下载
- 积分:1