Answer:
See explanation
Step-by-step explanation:
Given
The above program that subtracts two numbers and returns the result
Required
Modify the source code to run perfectly
When the given program is tested, it displays
4 minus 10 equals -6
Which is different from the expected output of
10 minus 4 equals 6
Modify
solution = minuend-subtrahend
to
solution = subtrahend - minuend
And that does it.