博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++程序设计(第2版)课后习题答案--第11章
阅读量:6251 次
发布时间:2019-06-22

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

11.9  定义分数类Rational......

View Code
1 #include
2 #include
3 class Rational{ 4 private: 5 int fm,fz; 6 int getZdgys(int a,int b); 7 public: 8 Rational(){ 9 fm=1;fz=0;10 }11 Rational(int a,int b);12 friend Rational Add(Rational r1,Rational r2);13 friend Rational Sub(Rational r1,Rational r2);14 void Print1();15 void Print2();16 };17 18 Rational::Rational(int fm1,int fz1)19 {20 int t=getZdgys(fm1,fz1);21 fm=fm1/t;22 fz=fz1/t;23 }24 25 void Rational::Print1()26 {27 cout<
<<"/"<
<

 

转载于:https://www.cnblogs.com/shajianheng/archive/2013/03/18/2965669.html

你可能感兴趣的文章
水仙花数
查看>>
P3308 [SDOI2014]LIS(最小割+退流)
查看>>
C语言作业--数据类型
查看>>
压位高精
查看>>
jsp 中对jar 包的引用
查看>>
python操作mysql数据库
查看>>
Yii: gii 403 Error you are not allowed to access this page
查看>>
计算汉字长度
查看>>
Codeforces 911E - Stack Sorting
查看>>
BZOJ 1853: [Scoi2010]幸运数字
查看>>
基于敏捷的测试交付物通用设计
查看>>
BFS --- 素数环
查看>>
for循环每次取出一个字符(不是字节)
查看>>
linux版本选择
查看>>
不写for也能选中checkbox!
查看>>
PCIE_DMA:xapp1052学习笔记
查看>>
css
查看>>
Java规则引擎及JSR-94[转]
查看>>
【c学习-13】
查看>>
给报表增加页眉
查看>>