实验三 类与对象(zxt)

//以下为课上的实现虚数相加的内容,以及我的疑惑(懵逼)

这个代码存在问题,只能运行整数不能运行浮点数,以下为2.0版本

这回的又有一些问题,这个源代码是老师ppt上的,main函数中的部分是我写的。但是由于我想既能进行整数和浮点数的加法,所以我设置为了double类型。由此导致我只能调用double add( ),int add( )完全没用,如果不把m,n,p,q都设置为double类型,比如:把m,p设置为整型值,说明你已经知道m,p为整型值,这样的话输入的范围就有了限制,我又不想这样,是不是有数据成员的重载?求大佬指点一下啊!

//贴纸带给我的好心情,这是我不喜欢用markdown的原因

//博客园怎么传word啊求教,emm要源代码的话私信我吧

//类与对象的总结

原文地址:https://www.cnblogs.com/fengmian/p/8719264.html

时间: 2024-10-25 17:58:30

实验三 类与对象(zxt)的相关文章

JAVA实验4 类与对象(封装继承多态等机制的使用)

实验四 类与对象(封装.继承.多态等机制的使用) 实验内容: 1. 编写一个名为TwoDimensionalShape的抽象类,拥有属性area和circumference表示面积和周长,以及抽象方法getArea()和getCircumference(),用于获取面积和周长. 2. 编写Printable接口,包括一个抽象方法printShapeInfo,用于输出图形信息. 3. 分别编写Rectangle.Triangle.Circular三个类,用于描述矩形.三角形和圆形,要求继承于Two

实验五 类和对象-3 zxt

实验一:运行ex1.cpp 实验二:ex2.cpp   实验三:补全ex3.cpp并运行 我以为是自己喜欢和不喜欢的呢...... 实验四:习题6-17 实验五:习题6-18 实验六:matrix类 我智障的没看见matrix.h,自己写的matrix,我都要写傻了,还运行不出来......求解决 实验七:期中考试第一题 写完突然意识到,忘了释放,要不然会造成内存泄漏,会有很严重的后果,尴尬 我真是老年人的脑袋,啥都忘...... 修改以后如下: 实验八:期中考试第二题 当密码输入错误时 实验九

JAVA实验3 类与对象

实验要求: 掌握类与对象的基本思想 能够熟练地使用Java设计并编写类 能够灵活运用各种对象 实验内容: 希腊神话中,宙斯战胜了泰坦之后成为众神之王,以此为背景,通过构造相应对象.属性和方法,并用随机的方式,模拟宙斯与泰坦的战斗过程. 构建类Titan,要求如下: 整形字段HP,以及相应的getter和setter 空参数列表构造方法Titan(),创造出的HP默认为700 带参数构造方法Titan(int HP),创造出指定HP的对象 方法attack(Zues z),参数为宙斯对象,每次调用

实验 4 类和对象-2

四.实验 Graph 1.类Graph的声明 #ifndef GRAPH_H #define GRAPH_H // 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char symbol; int size; }; 2.类Graph的实现 #include "graph.h" #include <iostream> using

实验4 类与对象2

实验结论 1.实验内容2 (2)文件源码 graph.h #ifndef GRAPH_H #define GRAPH_H // 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char symbol; int size; }; #endif graph.cpp // 类graph的实现 #include "graph.h" #include

实验三-类的实现

part1: void Graph::draw() { int i,a,b,t; a=size; b=size; t=1; while(a--) { for(i=0;i<b-1;i++) cout<<' '; for(i=0;i<t;i++) cout<<symbol; for(i=0;i<b-1;i++) cout<<' '; cout<<endl; b=b-1; t=t+2; } } part3: #ifndef FRACTION_H

实验3 类和对象

实验结论 4-11 定义并实现一个矩形类,有长,宽两个属性,由成员函数计算矩形的面积. #include <iostream> using namespace std; class rectangle{ public: rectangle(float length, float wide); float area(); private: float l, w; }; rectangle::rectangle(float length, float wide){ l=length; w=wide

【C++ 实验5 类和对象】

1. 1 #include <iostream> 2 #include <vector> 3 #include <string> 4 using namespace std; 5 6 // 函数声明 7 void output1(vector<string> &); 8 void output2(vector<string> &); 9 10 int main() 11 { 12 vector<string>likes

实验5 类和对象3

四.实验结论 实验内容1 vector3.cpp 完整程序 #include <iostream> #include <vector> #include <string> using namespace std; // 函数声明 void output1(vector<string> &); void output2(vector<string> &); int main() { vector<string>likes