题目 For two rational numbers, your task is to implement the basic arithmetics, that is, to calculate their sum, diference, product and quotient. Input Specification: Each input file contains one test case, which gives in one line the two rational numb…
1.注意在数字和string转化过程中,需要考虑数字不是只有一位的,如300转为"300",一开始卡在里这里, 测试用例: 24/8 100/10 24/11 300/11 2.该题用到了欧几里德算法求最小公约数gcd(a,b) 算法如下: //欧几里德算法求最大公约数gcd,其中a>b long long gcd(long long a, long long b) { return b == 0 ? a : gcd(b, a%b); } AC代码如下: //#include&l…
1088. Rational Arithmetic (20) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue For two rational numbers, your task is to implement the basic arithmetics, that is, to calculate their sum, difference, product and quotient. Input Spe…
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 o…
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 number…
题目描写叙述 For two rational numbers, your task is to implement the basic arithmetics, that is, to calculate their sum, difference, product and quotient. 输入描写叙述: Each input file contains one test case, which gives in one line the two rational numbers in t…
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 number…