-
eeprom
STC单片机的EEPROM的驱动程序,包括读写eeprom的程序(AVR and C language entry, including the introduction of AVR microcontroller and the c language entry and application.)
- 2010-09-05 18:17:08下载
- 积分:1
-
ie helper与ie协同工作 使ie在使用时更方便 使网上冲浪更轻松
ie helper与ie协同工作 使ie在使用时更方便 使网上冲浪更轻松-ie helper to work with ie ie so in the use of more convenient to make it easier to surf the Internet
- 2023-01-23 10:15:04下载
- 积分:1
-
jisuanqi
计算器,可进行四则运算,并且有符号位,退格,以及小数点。(Calculator, can be carried out in four operations, and the sign bit, backspace, and decimal point.)
- 2013-11-11 12:51:12下载
- 积分:1
-
cPPbuilder
c++ builder 可以导出相应的DBGrid里面的数据(c++ builder can export the data inside the corresponding DBGrid)
- 2013-11-29 21:08:28下载
- 积分:1
-
ExImage
1. ExImage是在DIB类的基础上,扩展了一些基本图像处理功能,除图像格式库外,所有图像处理算法均为自主开发,各处理算法可单独使用。
2. ExImage主要功能包括:颜色增强、校正、配准、拼接、复原、融合、分析、压缩编码等。
关键词:彩色图像处理、自适应中值滤波、图像增强、几何校正、图像配准、图像拼接、图像融合、图像压缩。
(ExImage Image processing toolkit)
- 2009-09-18 14:54:49下载
- 积分:1
-
CxImage图像处理库源码
用于图像处理的图像处理库,支持多种图像格式,如bmp, jpg, png, raw,gif,ico,jas,jbg,tif,mng,pcx,psd,ska等,实现了常见图像处理算法。
- 2022-07-14 05:01:34下载
- 积分:1
-
验证码识别c# 源码
验证码识别c# 源码. 可以识别多重验证码。可以稍作修改识别更多的类型。已经使用过。可执行。 可以识别多重验证码。可以稍作修改识别更多的类型。已经使用过。可执行。
- 2022-12-08 23:50:03下载
- 积分:1
-
one
实验1 C++基础编程
实验目的
? 掌握VC++ 6.0进行程序设计的基本步骤。
? 学会在VC++ 6.0环境下进行简单C++程序设计。
? 掌握new和delete的用法。
? 熟练使用string类处理字符串。
? 重点掌握函数的参数传递方式、函数重载、函数默认值的实现。
实验学时
本次实验需要2个学时。
实验要求
? 实验上机之前,根据实验内容要求,自行设计编写程序,完成预习报告。
? 实验上机时调试并修正程序。
? 当次上机结束前分析错误原因并给出实验结论,提交实验报告。
实验内容
1.基础部分
(1)动态分配保存10个成绩数组的存储空间,并对成绩进行输入,求出最高分并输出,用new和delete。
{
double*pd=new double [10];
double k;
for(int i=0;i<10;i++)
cin>>pd[i];
for(int j=0;j<9;j++)
{
if(pd[j]>pd[j+1])
{
k=pd[j];
pd[j]=pd[j+1];
pd[j+1]=k;
}
if(j==8)
cout<<pd[j+1]<<endl;
}
system("pause");
return 0;
}
(2).定义函数,实现两个变量的交换(用传递指针和传递引用的方式分别实现),并对比区别。
(4).上述第(3)题,如果希望给形参默认值,如a=1,b=2,c=3,该如何修改和如何调用?(Experiment 1 C++ Basic Programming Experimental purpose Grasp the basic steps of VC++ 6.0 programming. Learn to design simple C++ programs in the environment of VC++ 6.0. Master the usage of new and delete. Proficiency in string class processing. Emphasis is laid on how to transfer function parameters, how to overload function and how to realize default value of function. Experimental hours This experiment needs two hours. Experimental requirements Before the experiment is put on the computer, according to the requirement of the experiment content, the program is designed and written by oneself, and the preview report is completed. Debug and correct the program when the experiment is on the computer.)
- 2019-05-01 14:56:42下载
- 积分:1
-
VC++纯Windows-API编程,文字扇形
有古诗:“风急天高猿啸哀,渚清沙白鸟飞回,无边落木萧萧下,不尽长江滚滚来,万里悲秋常作客,百年多病独登台,艰难苦恨繁霜鬓,潦倒新停浊酒杯”,要求按附图的样式输出。
注:没有必要在颜色、字体、文字大小等方面跟附图完全一致,只要有相近的样子或样式就行。关键在于掌握编程思想和技术。
- 2023-06-28 13:45:06下载
- 积分:1
-
gauss
利用vc++ 6.0 编写的进行高斯消元法运算的代码(Using vc++ 6 prepared by Gauss elimination operation element method code)
- 2014-04-19 16:25:17下载
- 积分:1