Question: it's C++ can you please put the answer as typing style so i can copy it Bonus Project 10: The U.S. Postal Service prints a


it's C++
can you please put the answer as typing style so i can copy it
Bonus Project 10: The U.S. Postal Service prints a bar code on every envelope that represents a five (or more) digit zip code using a format called POSTNET (this for- mat is being deprecated in favor of a new system, OneCode, in 2009) The bar code consists of long and short bars as shown lImmIUIII For this program, we will represent the bar code as a string of digits The digit 1 represents a long bar, and the digit 0 represents a short bar Therefore, the bar code would be represented in our program as 1101001010010101|000010011 The first and last digits of the bar code are always 1. Removing these leave 25 digits. If these 25 digits are split into groups of five digits each, we have: 10100 10100 1010 1100 01001 Next, consider each group of five digits. There will always be exactly two 1's in each group of digits. Each digit stands for a number. From left to right, the digits encode the values 7, 4, 2, 1, and 0. Multiply the corresponding value with the digit and compute the sum to get the final encoded digit for the zip code. The table below shows the encoding for 10100 Bar Code Digits 0 0 Value 4 0 Product of Digit Value 0 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
