Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For faster sorting of letters, the United States Postal Service encourages companies that use large volumes of mail to use a bar code denoting the

image text in transcribed

For faster sorting of letters, the United States Postal Service encourages companies that use large volumes of mail to use a bar code denoting the ZIP. These are full-height frame bars on each side. The five encoded digits are followed by a check digit, which is computed as follows: Add up all digits, and choose the check digit to make the sum a multiple of 10. For example, the sum of the digits in the ZIP code 95014 is 9, so the check digit is 1 to make the sum equal to 20. Each digit of the ZIP code, and the check digit, is encoded according to the following table: where 0 denotes a half bar and a 1 a full bar. Note that they represent all combinations of two full and three half bars. The digit can be computed easily from the bar code using the column weights 7, 4, 2, 1, 0. For example, 01100 is: 0.7 + 1.4 + 1.2 + 0.1 + 0.0 = 6 The only expression is 0, which would yield 11 according to the weights formula. Write a program that asks the user for a ZIP code and prints the bar code. Use : for half bars, | for full bars. For example, 05014 becomes: (Alternatively, write a graphical application that draws real bars.) Your program should also be able to carry out the opposite conversion: translate bars into their ZIP code, reporting any errors in the input format or a mismatch of the digits

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

SQL Database Programming

Authors: Chris Fehily

1st Edition

1937842312, 978-1937842314

More Books

Students also viewed these Databases questions

Question

What is the most important part of any HCM Project Map and why?

Answered: 1 week ago