Use C++ language Create a class called Fraction for performing arithmetic with fractions. Use integer variables to represent the private data of the class—the numerator and the denominator. Provide a constructor function that enables an object of this class to be initialized when it is declared. The constructor should contain default values in case no initializers are provided. Provide public member functions for each of the following: a) Addition of two Fraction numbers (included in the Frac.cpp as an example). b) Subtraction of two Fraction numbers. c) Multiplication of two Fraction numbers. d) Division of two Fraction numbers. e) Printing Fraction numbers in the form a/b where a is the numerator and b is the denominator. f) Printing Fraction numbers in double floating-point format.
Use C++ language
Create a class called Fraction for performing arithmetic with fractions. Use integer variables to represent the private data of the class—the numerator and the denominator. Provide a constructor function that enables an object of this class to be initialized when it is declared. The constructor should contain default values in case no initializers are provided. Provide public member functions for each of the following:
a) Addition of two Fraction numbers (included in the Frac.cpp as an example).
b) Subtraction of two Fraction numbers.
c) Multiplication of two Fraction numbers.
d) Division of two Fraction numbers.
e) Printing Fraction numbers in the form a/b where a is the numerator and b is the denominator.
f) Printing Fraction numbers in double floating-point format.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images