-
FileFindThread
本程序是关于文件操作的源码,实现了用多线程技术递归查找文件的方法来遍历每一个文件和文件夹(The program is operating on the source file to achieve with multi-threading approach to find files recursively through every file and folder)
- 2011-06-07 15:21:26下载
- 积分:1
-
STM32门禁系统
stm32 C语言 实现红外射频,增加使用语音播报模块,。。。。。。。。。。。。。。。。。。。。。。。。。。。。
- 2022-01-31 10:47:03下载
- 积分:1
-
PagerDemo_prj
像C++Builder里的用于左右滚动系列控件的带箭头的控件(The control with arrow which likes the set of contorls in C++ Builder which can move left and right)
- 2020-12-04 16:39:24下载
- 积分:1
-
houfangjiaohui
单张像片后方交会,输入4个以上的控制点,反算外方位元素
(Photo leaflet resection, type of control for more than four points, inverse elements of exterior orientation)
- 2009-04-15 10:32:25下载
- 积分:1
-
buerdaishu
说明: 布尔代数解决数学问题!A参加B不参加,A和C不同时参加等等~~(buerdaishu!)
- 2010-04-14 13:26:44下载
- 积分:1
-
OA源码增强版
本系统基于微软VS.net 2005+ C# +MSSQL,技术领先,完全模块化设计,扩容性强,公文传阅、收文、发文、工作流管理、文件管理、数据分析、图形化的流程设计,使办公更清晰、文档的在线编辑、印章的使用保密,编辑文档可同时进入留痕工作,可以完全记住编辑时删除的文字,待编辑完成后统一管理。本系统经压力测试,完全支持1000人以上的并发连接。并涵盖强大的语音提示功能。
- 2022-01-26 05:39:50下载
- 积分:1
-
game
说明: 实现游戏程序的源代码,运行很好,功能都已实现了。(Procedures to achieve the game)
- 2008-11-26 23:17:16下载
- 积分:1
-
07_20秒定时器定时
说明: 基于51单片机的定时器使用,易懂。。。。(The timer based on 51 single chip computer is easy to understand.)
- 2020-06-17 19:00:01下载
- 积分:1
-
2DUDFSTOKES
该程序为fluent软件进行速度入口造波数值模拟,波浪为二阶stokes波(The program for the FLUENT software simulation of wave speed entrance numerical, two order Stokes wave)
- 2014-07-11 15:40:02下载
- 积分: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