-
smgjsq
51单片机数码管静态显示,计数器功能,学习如何对数据管进行操作(51 MCU digital static display, the counter function, learning how to operate the data management)
- 2010-11-16 16:20:43下载
- 积分:1
-
MatlabFns
matlab工具箱 图像的处理 强大 可以看看 函数多(matlab image processing toolbox function can look more powerful)
- 2010-12-30 16:42:27下载
- 积分:1
-
am
说明: 通信原理的AM调制信号,MATLAB实现仿真(Communication Theory of AM modulated signal MATLAB for simulation)
- 2013-03-11 11:14:31下载
- 积分:1
-
用VS2005编写的MDI文档,基本跟操作系统XP中的写字板一样的
用VS2005编写的MDI文档,基本跟操作系统XP中的写字板一样的-MDI documents written using VS2005, the basic operating system, XP, WordPad with the same
- 2022-04-27 11:40:59下载
- 积分:1
-
Book stm32.pdf
book for beginners in stm32
- 2018-05-01 22:46:57下载
- 积分:1
-
chm_http
CHM HTTP transaction library
- 2010-10-06 13:27:29下载
- 积分:1
-
dct变换
实现离散余弦(TCD)变换(achieve discrete cosine (TCD) Transform)
- 2020-10-15 10:47:29下载
- 积分:1
-
carlocation20061010
一款用VC++写的车牌定位系统,对理解和研究图像文字识别有很好的参考价值。(write the license plate positioning systems, and research to understand images and text identification of value.)
- 2007-05-26 16:34:22下载
- 积分: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
-
纯软运动控制源代码,包括算法
纯软运动控制源代码,包括算法(控制板与PC通过USB连接)
- 2022-05-24 20:18:40下载
- 积分:1