Question: Write a calculator that does fractions and reduces the answer in C# Follow the instructions below 1/2 Operation Enter a Value forx o Add Enter
Write a calculator that does fractions and reduces the answer in C# Follow the instructions below 
1/2 Operation Enter a Value forx o Add Enter a Value for Y 3/4 Subtract Multiple Divide Calculate Clear The Answer is 10/8 The Program: The program will: Use two text boxes, one groupbox, 4 radio buttons, two buttons and 4 labels. Only allowing valid fractions in the textboxes. Perform the operations add, subtract, multiply and divide. Have a working clear button. Have a Fraction Class which contains: ToString method Four operations +, -, /, and* A constructor which accepts a string (a fraction) A default constructor which sets the numerator to 0 and sets the denominator to 1 It does not need to contain properties for numerator and denominator. It will have a private method to reduce the fraction to its lowest terms, After it is reduced it will then be displayed to the user
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
