-
对象
面向对象课程作业
使用vc基于模板编写 ――全模板UniSparPoly_2-object-oriented operations using vc courses based on template preparation-- all template UniSparPoly_2
- 2022-04-01 12:52:59下载
- 积分:1
-
s3c2440bootloader STEPLDR修改版,在广告投放
s3c2440bootloader的stepldr修改版,在ads下运行-stepldr modified version of s3c2440bootloader, in ads running
- 2022-08-08 05:44:25下载
- 积分:1
-
显示当前系统中运行的所有窗口的VB源码
显示当前系统中运行的所有窗口的VB源码-Shows the current system, running on all the windows of the VB source code ..................
- 2022-07-27 07:40:47下载
- 积分:1
-
我的工作是 Delphi 程序员
我的工作是 Delphi 程序员。我喜欢!我想从扫描仪创建用于识别图像 OCR 项目。它对我很重要 !
- 2022-07-22 02:20:31下载
- 积分:1
-
1、设计一个程序,其中有3个类,即CBank,BBank和GBank,分别为中国银行类、工商银行类和农业银行类。每个类都包含一个私有数据balance,用于存放...
1、设计一个程序,其中有3个类,即CBank,BBank和GBank,分别为中国银行类、工商银行类和农业银行类。每个类都包含一个私有数据balance,用于存放储户在该行的存款数,另有一个友元函数total用于计算储户在这3家银行中的总存款数。
2、设计一个程序,其中有2个类,Point类为点类,包含2个私有数据x和y,表示点的坐标,line类为直线类,包含3个私有数据a,b和c,表示直线方程ax+by+c=0。另有一个友元函数dist,用于计算一个点到直线的距离。点与直线之间的距离计算公式如下:(提示:本题为有元函数的应用)
-1, design a program, of which three categories, namely CBank, BBank and GBank, respectively, for the Chinese banking, business banking and agricultural banking. Each class contains a private data balance, used to store the bank deposits of savers in the number, while a friend function used to calculate the total depositors in the three the number of total deposits in banks. 2, design a program, of which there are 2 categories, Point class for the point class, including two individual and private data are x and y, that the coordinates of points, line for line class categories, with three individual and private data are a, b and c, that straight line equation ax+ by+ c = 0. There is also a friend function dist, used
- 2022-08-20 00:41:26下载
- 积分:1
-
翻译英语单词的小程序.我也不想更新程序,所以开源.您要更新了此程序发给我一份吧!...
翻译英语单词的小程序.我也不想更新程序,所以开源.您要更新了此程序发给我一份吧!-English translation of the word small programs. I do not want to update, so revenue. You want to update this to me a procedure!
- 2023-02-06 21:45:03下载
- 积分:1
-
红黑树好男人
red black tree ok man
- 2023-08-20 02:45:03下载
- 积分:1
-
Samsung s3c2440NBOOT, USB communications,
三星s3c2440NBOOT,USB通信,-Samsung s3c2440NBOOT, USB communications,
- 2022-04-11 20:34:09下载
- 积分:1
-
数码管控件.rar,有事例。
数码管控件.rar,有事例。-digital pipe controls. Rar, stories.
- 2022-02-02 15:46:32下载
- 积分:1
-
can代码
can代码
class CPoint{
private: //私有成员
float m_x, m_y;
protected: //保护成员
void SetPoint(float x, float y) {m_x = x; m_y = y;}
public: //公共成员
CPoint(float x, float y) {m_x = x; m_y = y;} //构造函数
void Move(float x, float y) {SetPoint(m_x + x, m_y + y);}
void Display() {cout
- 2022-04-01 02:38:18下载
- 积分:1