-
一个大整数计算的小程序,可以进行大数的计算,可以对素数进行测试...
一个大整数计算的小程序,可以进行大数的计算,可以对素数进行测试-a large integer calculation procedures for the small, the large numbers can be calculated in the number of test-
- 2023-04-18 13:35:03下载
- 积分:1
-
该源码内提供了多种算法的源码,包含了当前很多经常用到的算法...
该源码内提供了多种算法的源码,包含了当前很多经常用到的算法-The source to provide a wide range of algorithm source code, including the current lot of frequently used algorithms
- 2022-01-25 20:50:22下载
- 积分:1
-
一个BP网络改进的M程序
一个BP网络改进的M程序-a network to improve the procedures M
- 2022-05-30 13:01:13下载
- 积分:1
-
stl文件读取与显示
应用背景STL =
STL文件,一种3D模型文件格式STL(STereo Lithography的缩写)
STL文件格式是由3D SYSTEMS 公司于1988
年制定的一个接口协议,是一种为快速原型制造技术服务的三维图形文件格式。STL 文件由多个三角形面片的定义组成,每个三角形面片的定义包括三角形各个定点的三维坐标及三角形面片的法矢量。三角形顶点的排列顺序遵循右手法则。 STL 文件有2 种类型:文本文件(ASCII格式)和二进制文件(BINARY)。关键技术This program may crash your system or run poorly depending on your
hardware. The program and code contained in this archive was scanned
for virii and has passed all test before it was put online. If you
use this code in project of your own, send a shout out to the author!
- 2022-05-08 08:33:51下载
- 积分:1
-
FFT变换的matlab环境仿真程序,带注释
FFT变换的matlab环境仿真程序,带注释-FFT transform matlab environment simulation procedure, with Notes
- 2022-02-25 09:50:00下载
- 积分:1
-
改进蚁群算法求解配送
有多个配送点,每个配送点必须访问,可以访问多次,起点确定,配送点与配送点之间不完全连接,配送点与配送点之间以时间作为衡量标准。要求从起点出发,尽可能快地访问每一个配送点。
- 2023-01-03 03:00:07下载
- 积分:1
-
网上购物筐
资源描述网上购物筐的源代码,做毕业设计必用,各种购物网站电子商务必参考代码。
- 2022-03-31 03:24:56下载
- 积分:1
-
C的Kalman滤波,C++和Matlab程序
Kalman filter的C,C++及matlab程序-Kalman filter of the C, C++ and matlab programs
- 2022-02-24 11:10:58下载
- 积分:1
-
归并排序算法的C++
该代码读取输入文本文件并将其排序,然后将这些数字排序为输出文本文件。代码使用合并排序算法进行排序。
- 2022-08-13 23:57:35下载
- 积分:1
-
打印条形码示例
资源描述
Code128
Code39
两种编码规则的条形码,数字变成条形码的转换方法。
// TODO: Add your control notification handler code here
CDC dc;
int CodeName,printQuality;
LPSTR partial=NULL,text;
CCode39 code39;
CCode128 code128;
UpdateData(TRUE);
text=m_CodeText.GetBuffer (50);
//获取编码方式
CodeName=m_CodeName.GetCurSel();
if(CodeName==CB_ERR)
{
MessageBox("请选择编码方式");
return;
}
switch(CodeName)
{
case 0:
CodeType=CODE39;
break;
case 1:
CodeType=CODE128A;
break;
case 2:
CodeType=CODE128B;
break;
case 3:
CodeType=CODE128C;
break;
}
//获取打印机设备环境
if(!(printDlg.DoModal()))
{
MessageBox("打印错误。");
return ;
}
- 2022-03-22 14:26:04下载
- 积分:1