-
UA-Nodeset
说明: This repository contains UANodeSets and other normative files which are released with a specification.
Any change to a specification (release of a new version or errata) may require a change to the files in this repository.
- 2020-06-21 03:00:01下载
- 积分:1
-
某道1.60.0905
说明: 1.6完美端1.64下载地址 附带工具1.6完美端1.64下载地址 附带工具(1.6 Perfect End 1.64 Download Address Supplementary Tool 1.6 Perfect End 1.64 Download Address Supplementary Tool)
- 2021-02-04 09:29:58下载
- 积分:1
-
ADO-open-close
用ADO打开关闭数据库的简单程序 初步了解关于ADO在MFC中的使用(用ADO打开关闭数据库的简单程序 初步了解关于ADO在MFC中的使用
Simple procedures for opening and closing the database with ADO preliminary understanding about use of ADO in MFC
)
- 2013-10-21 15:24:14下载
- 积分:1
-
Asp.net学生信息管理系统源码
说明: 这是一款有关学生信息管理系统的源码,该系统是一个集成多功能的信息管理系统,有教师资料管理、学生管理、班级管理、
专业管理、课程管理、成绩管理和院系管理功能模块。可以作为毕业设计或者课程设计使用以及学习交流使用,
感兴趣的同学们可以下载哦。(This is the source code of a student information management system, which is an integrated multi-functional information management system, including teacher information management, student management, class management Professional management, curriculum management, performance management and department management function modules. It can be used as graduation design or course design and learning exchange, Interested students can download it.)
- 2020-04-24 21:46:32下载
- 积分:1
-
STM8-C-language-programming
STM8 C language programming
- 2016-07-19 11:28:52下载
- 积分:1
-
单目视觉的恢复,摄像机标定,投影仪标定
单目视觉的恢复,摄像机标定,投影仪标定,源码充足,不需修改,可直接用,环境为vs2010+opencv2.4.8.
单目视觉的恢复,摄像机标定,投影仪标定,源码充足,不需修改,可直接用,环境为vs2010+opencv2.4.8.
- 2022-07-24 15:25:10下载
- 积分:1
-
CRC校验_C#.Net
1 串口通讯的Modbus协议中的CRC校验,必不可少的。 本实例为在VS下验证通过,可以在.Net程序中直接使用。
2 可做参考,希望可以有助更多的人。
- 2022-03-11 02:10:01下载
- 积分:1
-
八皇后问题c语言实现
void show() /* 输出所有皇后的坐标 */
{
int i;
for(i = 0; i < max; i++)
{
printf("(%d,%d) ", i, queen[i]);
}
printf("
");
sum++;
}
int check(int n) /* 检查当前列能否放置皇后 */
{
int i;
for(i = 0; i < n; i++) /* 检查横排和对角线上是否可以放置皇后 */
{
if(queen[i] == queen[n] || abs(queen[i] - queen[n]) == (n - i))
{
return 1;
}
}
return 0;
}
void put(int n) /* 回溯尝试皇后位置,n为横坐标 */
{
int i;
for(i = 0; i < max; i++)
{
&nbs
- 2022-05-09 12:47:00下载
- 积分:1
-
tuoyuanquxian
说明: 关于椭圆算法的,比较通俗易懂,供初学者用(Algorithm on the elliptical, more user-friendly for beginners with)
- 2008-11-24 00:17:52下载
- 积分:1
-
chengxu
编写一个函数,要求输入年月日时分秒,
输出该年月日时分秒的下一秒。
如输入2011年12月31日23时59分59秒,
则输出2012年1月1日0时0分0秒。
需要考虑闰年 和 2月的特殊情况 (Write a function that requires input date, hour, minute and second outputs of the date when the next second. If the input at 23:59:59 on December 31st, 2011, output at 0:00:00 on January 1, 2012. Leap year and February need to consider the special case)
- 2013-05-28 13:06:03下载
- 积分:1