Question: Write a class Fraction, define a exception and throw when the fraction is instantiated with zero in the denominator. int main() {Fraction a(1, 2); Fraction
Write a class Fraction, define a exception and throw when the fraction is instantiated with zero in the denominator. int main() {Fraction a(1, 2); Fraction b(1, 3); Fraction c = a + b; Fraction d(1, 0);//should crash out}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
