惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
P
Privacy International News Feed
Vercel News
Vercel News
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
博客园 - 叶小钗
F
Fortinet All Blogs
Security Archives - TechRepublic
Security Archives - TechRepublic
L
LINUX DO - 最新话题
AWS News Blog
AWS News Blog
Engineering at Meta
Engineering at Meta
Attack and Defense Labs
Attack and Defense Labs
Recent Announcements
Recent Announcements
Recent Commits to openclaw:main
Recent Commits to openclaw:main
PCI Perspectives
PCI Perspectives
Cloudbric
Cloudbric
AI
AI
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
IT之家
IT之家
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
J
Java Code Geeks
M
MIT News - Artificial intelligence
Cisco Talos Blog
Cisco Talos Blog
V2EX - 技术
V2EX - 技术
Webroot Blog
Webroot Blog
Microsoft Security Blog
Microsoft Security Blog
Cyberwarzone
Cyberwarzone
博客园 - 聂微东
G
Google Developers Blog
W
WeLiveSecurity
罗磊的独立博客
P
Privacy & Cybersecurity Law Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
T
Tailwind CSS Blog
V
Visual Studio Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
Secure Thoughts
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
Google DeepMind News
Google DeepMind News
Google DeepMind News
Google DeepMind News
雷峰网
雷峰网
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
F
Full Disclosure
Blog — PlanetScale
Blog — PlanetScale
The Last Watchdog
The Last Watchdog
P
Proofpoint News Feed

博客园 - 秋天的菠菜

大学计算机基础实验 2013年信1204-1-2班小学期<程序设计技能训练>作品 C++程序设计(第2版)课后习题答案--第14章 C++程序设计(第2版)课后习题答案--第12章 C++程序设计(第2版)课后习题答案--第13章 C++程序设计(第2版)课后习题答案--第8章 C++程序设计(第2版)课后习题答案--第4章 关于指针的经典例题 Java多线程读文件比单线程提高效率的实例 第一门编程语言选谁?(转) C语言程序设计实验指导书 寂寞让生命如此美丽 循环结构经典程序 C语言初学者最容易犯的错误 正则表达式 用脚本类IDS抵御针对WEB的攻击 java实验一 方法和构造方法 java实验二 类和对象 java实验四 面向对象的综合应用 java实验三 类的继承与多态
C++程序设计(第2版)课后习题答案--第11章
秋天的菠菜 · 2013-03-18 · via 博客园 - 秋天的菠菜

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

View Code

 1 #include<iostream.h>
 2 #include<stdlib.h>
 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<<fz<<"/"<<fm<<endl;
28 }
29 
30 void Rational::Print2()
31 {
32     cout<<(double(fz)/fm)<<endl;
33 }
34 
35 int Rational::getZdgys(int a,int b)
36 {
37     int t;
38     while(t=a%b)
39     {
40         a=b;
41         b=t;
42     }
43     return b;
44 }
45 
46 Rational Add(Rational r1,Rational r2)
47 {
48     int m= r1.fm*r2.fm;
49     int n= r1.fz*r2.fm+r1.fm*r2.fz;
50     Rational result(m,n);
51     return result;
52 }
53 Rational Sub(Rational r1,Rational r2)
54 {
55     int m= r1.fm*r2.fm;
56     int n= r1.fz*r2.fm-r1.fm*r2.fz;
57     Rational result(m,n);
58     return result;
59 }
60 void main()
61 {
62     Rational a(24,12);
63     Rational b(6,1);
64     Rational result;
65     result=Add(a,b);
66     result.Print1();
67     
68     result=Sub(a,b);
69     result.Print1();
70 }