Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Exercise 1.4.7: Add Fractions 4 points Let's Go! In this program you will initialize 4 integers that represent each part of two fractions, namely the

Exercise 1.4.7: Add Fractions

4 points

Let's Go!

In this program you will initialize 4 integers that represent each part of two fractions, namely the numerator and denominator of the first fraction and the numerator and denominator of the second fraction.

Your program should add the two fractions and print out the result.

For example, a sample program run might look like this

The numerator of the first fraction is 1 The denominator of the first fraction is 2 The numerator of the second fraction is 2 The denominator of the second fraction is 5 The sum of 1/2 + 2/5 = 9/10 

Note: you do not need to reduce these fractions. Be sure to test your code for postive and negative integers by changing the values of your initialized variables.

Remember, if you have two fractions you add them with:

 a c ad + bc ___ + ___ = ______ b d bd 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Dental Assisting

Authors: Doni Bird, Debbie Robinson

13th Edition

978-0323624855, 0323624855

Students also viewed these Programming questions