-
PCRat
呵呵,一款功能非常强大的远控软件,可以非常好的学习vc++(Oh, a very powerful remote control software, can be very good to learn vc++)
- 2011-08-20 16:45: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
-
PEViewer
说明: 该软件是用来分析PE文件结构的工具,可以分析出PE文件的各个头部,导入表,导出表。(The software is used to analyze the structure of the PE file tools that can analyze the PE file each head, import table is derived, tables
)
- 2011-04-12 18:35:01下载
- 积分:1
-
uCOSII2.91+UCGUI3.90A
源代码 ,例程 ,该例程为uCOSII2.91+UCGUI3.90A使用例程,源代码(Source code, routine, the routine is uCOSII 2.91 + UCGUI3.90A use routine, source code)
- 2019-01-21 13:59:00下载
- 积分:1
-
a smaple of a game called electronic pet.
a smaple of a game called electronic pet.
- 2022-04-14 19:56:32下载
- 积分:1
-
BPSimplified_src
3.2) Students shall acknowledge the involvement and / or contribution of an Industries or R&D organizations for their dissertations.
3.3) Satisfactory completion certificate issued by the Industry or R&D organization should be attached with the dissertation report.
3.4) Internal supervisor, should monitor the progress of his/her students by remaining in contact with the students and external supervisors by emails, video conferencing and/or by making visits to the industries at least once in a month, depending on the need of particular project and as decided by concerned Head of the Department.
- 2017-10-15 13:15:12下载
- 积分:1
-
WPF画曲线图源码
源码描述:
一、源码特点
一款用wpf画柱状图,扇形图,折线图,适合初学者学习使用,有需要的朋友不要错过
二、注意事项
开发环境为Visual Studio 2013,使用.net 4.5开发。
作者:青雨木(Source description:
I. Source Code Characteristics
Wpf is a bar chart, sector chart, polyline chart, suitable for beginners to learn to use, friends in need do not miss
II. Notes
The development environment is Visual Studio 2013, developed with. net 4.5.
Author: Qingyumu)
- 2020-06-23 02:40:01下载
- 积分:1
-
C# wpf 创建简单形状动画的例子
C# wpf 创建简单形状动画的例子,启动动画、停止动画、暂停动画、继续动画、加速动画。创建动画
Rectangle MyRectangle = new Rectangle();
MyRectangle.Width = 50;
MyRectangle.Height = 20;
MyRectangle.Margin = new Thickness(10, 50, 0, 0);
MyRectangle.Fill = new LinearGradientBrush(
Color.FromArgb(255, 0, 255, 255), Color.FromArgb(255, 0, 0, 255), 0);
MyRectangle.HorizontalAlignment = HorizontalAlignment.Left;
this.canvas1.Children.Add(MyRectangle);
this.RegisterName("MyRectangle", MyRectangle);
DoubleAnimation MyAnimation =
new DoubleAnimation(100, 380, new Duration(TimeSpan.FromSeconds(5)));
Storyboard.SetTargetName(MyAnimation, "MyRectangle");
Storyboard.SetTargetProperty(MyAnimation,
new PropertyPath(Rectangle.WidthProperty));
MyStoryboard = new Storyboard();
MyStoryboard.Children.Add(MyAnimation);
动画效果请参见下图所示,源代码请单击下载按钮下载。
- 2022-08-25 13:04:57下载
- 积分:1
-
最小二乘法
通过c语言编程,实习最小二乘法的功能,求解运算(Through the C language programming, practice the least square method function)
- 2017-10-27 11:12:05下载
- 积分:1
-
数独
回溯法求解数独的算法,在领扣上的算法题题解(Algorithms for Solving Sudoku by Backtracking Method)
- 2020-06-19 08:20:02下载
- 积分:1