博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实验6
阅读量:5905 次
发布时间:2019-06-19

本文共 1752 字,大约阅读时间需要 5 分钟。

1

#include
using namespace std;class chip{ protected: int m; int n; double result; public: chip(int a,int b,int c=0):m(a),n(b),result(c){} void addition(){ cout<
<<"+"<
<<"="; result=m+n; cout<
<

2

#include
using namespace std;class vehicle{ protected: int maxspeed; int weight; public: vehicle(int a,int b):maxspeed(a),weight(b){ } void run(){ cout<<"run"<

 运行失败。。不知道为什么

3

fraction.h

#ifndef FRACTION_H#define FRACTION_Hclass fraction{public:    fraction(int a, int b);    fraction(int a);    fraction();    ~fraction();    fraction operator+(const fraction &f1);    fraction operator-(const fraction &f1);    fraction operator*(const fraction &f1);    fraction operator/(const fraction &f1);    void compare(fraction &f1);    void input();    void output();protected:    int top;    int bottom;};#endif

 fraction.cpp

#include"fraction.h"#include
#include
using namespace std;Fraction Fraction::operator+(const Fraction &f1){ return Fraction(top*f1.bottom+f1.top*bottom,f1.bottom*bottom);}Fraction Fraction::operator-(const Fraction &f1){ return Fraction(top*f1.bottom-f1.top*bottom,bottom*f1.bottom);}Fraction Fraction::operator*(const Fraction &f1){ return Fraction(top*f1.top,bottom*f1.bottom); }Fraction Fraction::operator/(const Fraction &f1){ return Fraction(top*f1.bottom,bottom*f1.top);}void Fraction::output(){ int t,x,y; if(abs(top)>abs(bottom)) t=abs(bottom); else t=abs(top); for(int i=1;i

后面不会了。。

转载于:https://www.cnblogs.com/artistqun/p/9138862.html

你可能感兴趣的文章
clang: error: linker command failed with exit code 1 (use -v to see invocation)
查看>>
windows server2012部署apache项目访问后台管理系统时tomcat就停了是怎么回事
查看>>
viewpager切换耗时控制
查看>>
Java的三种代理模式
查看>>
(转)log4j(七)——log4j.xml简单配置样例说明
查看>>
labview程序性能优化
查看>>
Spark调研笔记第6篇 - Spark编程实战FAQ
查看>>
8.5 filecmp--文件和文件夹比較处理
查看>>
IE6下position:fixed不支持问题及其解决方式
查看>>
iOS Animation具体解释
查看>>
Selenium:集成测试报告
查看>>
<html>
查看>>
关于虚析构函数的作用和使用
查看>>
[Angular] Custom directive Form validator
查看>>
密码子优化--转载
查看>>
英特尔 QSV 在 FFMPEG 中的使用(Windows)
查看>>
深入理解计算机系统(2.2)------进制间的转换原理
查看>>
Linux下 网卡测速
查看>>
改善C#程序的建议5:引用类型赋值为null与加速垃圾回收
查看>>
Github如何回退/回滚到某个版本
查看>>