C++
Bonus #7
K.
Dzwonkiewicz
a) Write a function BreakUp() that takes an integer in the range 0-999 as a parameter and returns each of the digits in three integer reference.
b) Write a function Build() that takes three integer parameters and returns a value which consists of the number represented by the three digits.
c) Write a program illustrating BreakUp() and Build() using the specification: Every number from 0 to 999 is first broken up and then rebuilt and the result compared to the original value. An error message should be displayed if the original and rebuilt numbers do not match.

