1088 Rational Arithmetic(20 分)
For two rational numbers, your task is to implement the basic arithmetics, that is, to calculate their sum, difference, product and quotient.
Input Specification:
Each input file contains one test case, which gives in one line the two rational numbers in the format a1/b1 a2/b2
. The numerators and the denominators are all in the range of long int. If there is a negative sign, it must appear only in front of the numerator. The denominators are guaranteed to be non-zero numbers.
Output Specification:
For each test case, print in 4 lines the sum, difference, product and quotient of the two rational numbers, respectively. The format of each line is number1 operator number2 = result
. Notice that all the rational numbers must be in their simplest form k a/b
, where k
is the integer part, and a/b
is the simplest fraction part. If the number is negative, it must be included in a pair of parentheses. If the denominator in the division is zero, output Inf
as the result. It is guaranteed that all the output integers are in the range of long int.
Sample Input 1:
2/3 -4/2
Sample Output 1:
2/3 + (-2) = (-1 1/3)
2/3 - (-2) = 2 2/3
2/3 * (-2) = (-1 1/3)
2/3 / (-2) = (-1/3)
Sample Input 2:
5/3 0/6
Sample Output 2:
1 2/3 + 0 = 1 2/3 1 2/3 - 0 = 1 2/3 1 2/3 * 0 = 0 1 2/3 / 0 = Inf
#include<cstdio> #include<algorithm> using namespace std; typedef long long ll; struct Fraction{ ll up,down; }a,b; ll gcd(ll a,ll b){ return b == 0 ? a : gcd(b,a%b); } Fraction reduction(Fraction result){ if(result.down < 0){ result.down = -result.down; result.up = -result.up; } if(result.up == 0){ result.down = 1; }else{ int d = gcd(abs(result.up),abs(result.down)); result.down /= d; result.up /= d; } return result; } Fraction add(Fraction f1,Fraction f2){ Fraction result; result.up = f1.up*f2.down + f1.down*f2.up; result.down = f1.down*f2.down; return reduction(result); } Fraction muli(Fraction f1,Fraction f2){ Fraction result; result.up = f1.up*f2.down - f1.down*f2.up; result.down = f1.down*f2.down; return reduction(result); } Fraction multi(Fraction f1,Fraction f2){ Fraction result; result.up = f1.up*f2.up; result.down = f1.down*f2.down; return reduction(result); } Fraction divide(Fraction f1,Fraction f2){ Fraction result; result.up = f1.up * f2.down; result.down = f1.down * f2.up; return reduction(result); } void showResult(Fraction r){ r = reduction(r); if(r.up < 0) printf("("); if(r.down == 1) printf("%lld",r.up); else if(abs(r.up) > r.down){ printf("%lld %lld/%lld",r.up/r.down,abs(r.up)%r.down,r.down); }else{ printf("%lld/%lld",r.up,r.down); } if(r.up < 0) printf(")"); } int main(){ scanf("%lld/%lld %lld/%lld",&a.up,&a.down,&b.up,&b.down); showResult(a); printf(" + "); showResult(b); printf(" = "); showResult(add(a,b)); printf("\n"); showResult(a); printf(" - "); showResult(b); printf(" = "); showResult(muli(a,b)); printf("\n"); showResult(a); printf(" * "); showResult(b); printf(" = "); showResult(multi(a,b)); printf("\n"); showResult(a); printf(" / "); showResult(b); printf(" = "); if(b.up == 0) printf("Inf"); else showResult(divide(a,b)); return 0; }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)