版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、精选优质文档-倾情为你奉上/编程:建立一个分数类。分数类的数据成员包括分子和分母,操作包括显示、输入、约分、通分、比较、加、减、乘、除、求相反数。#include<iostream>#include<cmath>using namespace std;class fractionint above; /分子int below; /分母void reduction(); /约分void makeCommond(fraction&); /通分public:fraction(int a=0,int b=1) /构造函数above=a;below=b;fraction
2、add(fraction); /两分数相加fraction sub(fraction); /本分数减去实参分数fraction mul(fraction); /两分数相乘fraction div(fraction); /本分数除以实参分数fraction reciprocal(); /求倒数bool equal(fraction); /等于运算bool greaterThan(fraction); /大于运算bool lessThan(fraction); /小于运算void display(); /显示分数void input(); /输入分数;void fraction:reduction
3、() /约分先求最大公约数int a,b,temp;if(below<0)above=-above;below=-below;a=abs(above);b=abs(below);while(a%b) /欧几里德法求最大公约数temp=a;a=b;b=temp%b;above/=b;below/=b;void fraction:makeCommond(fraction& b)int temp;reduction();b.reduction();above*=b.below;b.above*=below;temp=below*b.below;below=b.below=temp;fr
4、action fraction:add(fraction b)fraction temp;makeCommond(b); /通分temp.above=above+b.above;temp.below=below;temp.reduction(); /约分return temp;fraction fraction:sub(fraction b)fraction temp;makeCommond(b); /通分temp.above=above-b.above;temp.below=below;temp.reduction(); /约分return temp;fraction fraction:mu
5、l(fraction b)fraction temp;temp.above=above*b.above;temp.below=below*b.below;temp.reduction(); /约分return temp;fraction fraction:div(fraction b)fraction temp;if(b.above=0)cout<<"零不能作除数!"<<endl;exit(1);temp.above=above*b.below;temp.below=below*b.above;temp.reduction(); /约分return
6、temp;fraction fraction:reciprocal()fraction temp;temp.above=below;temp.below=above;temp.reduction(); /约分return temp;bool fraction:equal(fraction b)makeCommond(b); /通分return(above=b.above);bool fraction:greaterThan(fraction b)makeCommond(b); /通分return(above>b.above);bool fraction:lessThan(fraction
7、 b)makeCommond(b); /通分return(above<b.above);void fraction:display()reduction(); /约分cout<<"为:"<<above<<"/"<<below<<endl;void fraction:input()while(1)cout<<"请顺序输入分子和分母(整数):"<<endl;cin>>above>>below;if(below=0) cout&
8、lt;<"分母不可为零!"<<endl;elsereduction();return;int main()fraction f1(-3,-5),f2(-3,5),f3(3,-7),f4,f5(8);cout<<"f1" f1.display();cout<<"f2" f2.display();cout<<"f3" f3.display();cout<<"f4" f4.display();cout<<"f5&q
9、uot; f5.display();if(f1.greaterThan(f2) cout<<"f1>f2"<<endl;if(f2.lessThan(f3) cout<<"f2<f3"<<endl;if(f1.equal(f1) cout<<"f1=f1"<<endl;f4=f1.add(f3);cout<<"f4=f1+f3" f4.display();f4=f1.sub(f2);cout<<"f
10、4=f1-f2" f4.display();f4=f1.mul(f3);cout<<"f4=f1*f3" f4.display();f4=f2.div(f3);cout<<"f4=f1/f3" f4.display();f4=f2.reciprocal();cout<<"f4=1/f2" f4.display();f4.input(); cout<<"f4" f4.display();return 0;4.3 构造一个日期时间类(Timedate),数据成员
11、包括年、月、日和时、分、秒,函数成员包括设置日期时间和输出时间,其中年、月请用枚举类型,并完成测试。(包括用成员函数和用普通函数)解:本题要求仅是定义类的练习,并非实用的提供日期时间的程序。实用的日期时间程序见附录二的日期时间函数。#include <iostream>#include <iomanip>using namespace std;enum YRY2000,Y2001,Y2002,Y2003,Y2004,Y2005;/enum MTJan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec;class Timedatepr
12、ivate:YR year;MT month;int date;int hh;int mm;int ss;public:Timedate()year=Y2000;month=Jan;date=1;hh=0;mm=0;ss=0;Timedate(YR a,MT b,int c)year=a;month=b;date=c;hh=12;mm=30;ss=0;void getdate(YR &,MT &,int &);/使用引用一次取得3个数值void gettime(int &,int &,int &);void putdate(YR ,MT ,int
13、 );void puttime(int ,int ,int );void list();void Timedate:getdate(YR &y,MT &m,int &d)y=year;m=month;d=date;void Timedate:gettime(int &a,int &b,int &c)a=hh;b=mm;c=ss;void Timedate:putdate(YR a,MT b,int c)year=a;month=b;date=c;void Timedate:puttime(int a,int b,int c)hh=a;mm=b;s
14、s=c;void Timedate:list()/成员函数,直接访问私有的数据成员cout<<"year/month/date :"switch(year)case Y2000:cout<<"2000"break;case Y2001:cout<<"2001"break;case Y2002:cout<<"2002"break;case Y2003:cout<<"2003"break;case Y2004:cout<<&qu
15、ot;2004"break;case Y2005:cout<<"2005"break;switch(month)case Jan:cout<<'/'<<"Jan"break;case Feb:cout<<'/'<<"Feb"break;case Mar:cout<<'/'<<"Mar"break;case Apr:cout<<'/'<<
16、"Apr"break;case May:cout<<'/'<<"May"break;case Jun:cout<<'/'<<"Jun"break;case Jul:cout<<'/'<<"Jul"break;case Aug:cout<<'/'<<"Aug"break;case Sep:cout<<'/'<
17、;<"Sep"break;case Oct:cout<<'/'<<"Oct"break;case Nov:cout<<'/'<<"Nov"break;case Dec:cout<<'/'<<"Dec"break;cout<<'/'<<date<<endl;cout<<"hour:minite:second :"
18、;cout<<hh<<':'<<mm<<':'<<ss<<endl;int main(int argc, char* argv)Timedate A(Y2004,Mar,3),B;A.list();B.list();B.putdate(Y2005,Oct,18);B.puttime(17,30,00);B.list();return 0;4.4 设计并测试一个矩形类(Rectangle),属性为矩形的左下与右上角的坐标,矩形水平放置。操作为计算矩形周长与面积。测试包括用成员函数和普通函数。解
19、:这里的矩形的4边分别与x轴y轴平行,为最简单的情况。注意参数有缺省值的函数的声明和定义格式。#include <iostream>#include <cmath>using namespace std;class Rectangle double left, top ;double right, bottom;public:Rectangle(double l=0, double t=0, double r=0, double b=0); Rectangle(); /析构函数,在此函数体为空void Assign(double l,double t,double r,
20、double b);double getLeft() return left; / 以下四个函数皆为内联成员函数double getRight() return right;double getTop()return top;double getBottom()return bottom;void Show();double Area();double Perimeter();/ 构造函数,带缺省参数,缺省值为全0,在声明中指定Rectangle:Rectangle(double l , double t, double r, double b) left = l; top = t;right
21、 = r; bottom = b; void Rectangle:Assign(double l, double t, double r, double b)/赋值left = l; top = t;right = r; bottom = b;void Rectangle:Show()/成员函数直接使用私有的数据成员cout<<"left-top point is ("<<left<<","<<top<<")"<<'n'cout<<&q
22、uot;right-bottom point is ("<<right<<","<<bottom<<")"<<'n'double Rectangle:Area()return fabs(right-left)*(bottom-top);double Rectangle:Perimeter()return 2*(fabs(right-left)+fabs(bottom-top);int main()Rectangle rect; rect.Show();rect.Assi
23、gn(100,200,300,400);rect.Show();Rectangle rect1(0,0,200,200);rect1.Show();Rectangle rect2(rect1);rect2.Show();cout<<"面积"<<rect.Area()<<'t'<<"周长"<<rect.Perimeter()<<endl;return 0;4.5 定义一个圆类(Circle),属性为半径(radius)、圆周长和面积,操作为输入半径并计算周长、面积,输出半径、周长和面积。要求定义构造函数(以半径为参数,缺省值为0,周长和面积在构造函数中生成)和拷贝构造函数。解:通常所有数据成员都在构造函数中赋初值。拷贝构造函数以本类的引用为参数。#include<iostream>#include<cmath>using namespace std;class Circledouble r,Area,Circumference;public:Circle(double a=0);Circle(Circle &);vo
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 高中物理第九章固体液体和物态变化第2节液体课件新人教版选修3-
- 高考数学全真模拟试题第12625期
- 【中考考点基础练】第11章 内能与热机 2025年物理中考总复习(福建)(含答案)
- 2024年山东省泰安市中考地理试题含答案
- 2024至2030年中国无菌设备数据监测研究报告
- 2024至2030年中国数码固体立体声全自动播放器数据监测研究报告
- 2024至2030年中国微电脑控制抽真空精密加酸机数据监测研究报告
- 2024至2030年中国引线式热敏电阻器行业投资前景及策略咨询研究报告
- 2010-2012年液态豆奶行业市场研究与竞争力分析报告
- 2024至2030年中国土碱行业投资前景及策略咨询研究报告
- 华为IPD流程各阶段370个活动详解
- 《公立医疗机构互联网医院建设规范》(编制说明编写要求)
- 【速冻菜肴制品企业海欣食品存货管理问题及建议(10000字论文)】
- 《高速公路沥青路面施工技术规范》
- 医药销售激励方案
- 反校园霸凌法制课件
- 《设计素描》课件-第七节 解构与重构
- 基础诗词格律
- 树牢总体国家安全观
- 第二单元大单元教学设计 2023-2024学年统编版高中语文必修上册
- 2023年-2024年《高等教育管理学》考试题库(含答案)
评论
0/150
提交评论