Write a program to implement a method that can do additions of 2 fractions. You will implement a class called Fraction consisting of a numerator and a denominator. The additions of
2 fractions should be equal to a fraction.
Use 1/2+1/3 as the test.
Hints:
Fraction f1, f2;
f1.add(f2);
1.在 methods add() 裡面增加一個 Fraction otherFraction2 用來暫存分子、分母個別相乘或相加的值。
2.
3.執行結果
沒有留言:
張貼留言