Help me to make barcode shape

faster sorting of letter, the United States Postal Service encourages companies that send large vloumes of mail to use a bar code denoting the ZIP code.
The encoding scheme for a five-digit ZIP code is shown in Table 1. There are full-height frame bars on each side. The five encoded digits are followed by a correction digit,
which is computed as follows : Add up all digits, and choose the correction digit to make the sum a multiple of 10. For example ,the ZIP code 95014 has sum of digits 19, so the correction digit is 1 to make the sum equal to 20.
Each digit of the ZIP code, and the correction digit, is encoded according to Table 1, where 0 denotes a half bar and 1 a full bar. Note that they represent all combinations of two full and three half bars. The digit can be easily computed from the bar code.
For example, 01100 is 0*7 + 1*4 + 1*2 +0*1 +0*0 =6. The only exception is 0, which would yield 11 according weight formula( .
( Table )
1. 00011
2. 00101
3. 00110
4. 01001
5. 01010
6. 01100
7. 10001
8. 10010
9. 10100
0. 11000
Write a program that asks the use for a ZIP code and prints the bar code. USe : for half bars, | for full bars. For example, 95014 becomes ||:|:::|:|:||::::::||:|::|:::|||
Where the first and last bar represent frame bars. The general format is : Frame-bar Digit1 Digit2 Digit3 Digit4 Digit5 Check-digit Frame-bar
Topic archived. No new replies allowed.