Create a Fraction class with fields that hold a whole number, a numerator, and a
ID: 3528642 • Letter: C
Question
Create a Fraction class with fields that hold a whole number, a numerator, and a denominator. In addition: Create properties for each field. The set accessor for the denominator should not allow a 0 value; the value defaults to 1. Add three constructors. One takes three parameters for a whole number, numerator, and denominator. Another accepts two parameters for the numerator and denominator; when this constructor is used, the whole number value is 0. The last constructor is parameter less; it sets the whole number and numerator to 0 and the denominator to 1. (After construction, Fractions do not have to be reduced to proper form. For example, even though 3/9 could be reduced to 1/3, your constructors do not have to perform this task.) Add a Reduce() method that reduces a fraction if it is in improper form. For example, 2/4 should be reduced to 1/2. Add an operator +() method that adds two fractions. To add two fractions, first eliminate any whole number part of the value. For example, 2 1/4 becomes 9/4 and 1 3/5 becomes 8/5. Find a common denominator and convert the fractions to it. For example, when adding 9/4 and 8/5, you can convert them to 45/20 and 32/20. Then, you can add the numerators, giving 77/20. Finally, call the Reduce() method to reduce the result, restoring any whole number value so the fractional part of the number is less than 1. For example, 77/20 becomes 3 17/20. Include a function that returns a string that contains a fraction in the usual display formatExplanation / Answer
Please rate with 5 stars :)
I had written this code once and am sharing with you :)