subject

A barcode scanner for Universal Product Codes (UPCs) verifies the 12-digit code scanned by comparing

the code’s last digit (called a check digit ) to its own

computation of the check digit from the first 11 digits as follows:
I. [step 1]Calculate the sum of the digits in the
odd-numbered positions (the first, third, ...,
eleventh digits) and multiply this sum by 3.

II. [step 2]Calculate the sum of the digits in the
even-numbered positions (the second, fourth, ...,
tenth digits) and add this to the previous
result(result of step1).

III. [step 3]If the last digit of the result from step
2 is 0, then 0 is the check digit. Otherwise,
subtract the last digit from 10 to calculate the
check digit.

IV. [step 4]If the check digit matches the final
digit of the 12-digit UPC, the UPC is assumed
correct.

1. Write main function that prompts the user to
enter the 12 digits of a barcode. The program
should store the digits in an integer array.

2. Write a “check” function to calculate the check
digit, and compare it to the final barcode digit.
If the digits match, output the barcode with the
message “validated.” If not, output the barcode
with the message “error in barcode.” Also, output
with labels the results from steps 1 and 2 of the
check-digit calculations. Note that the “first”
digit of the barcode will be stored in element 0
of the array. (clue: “check” function takes two
argument and it doesnt return any value)

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 22:20
What is a programming method that provides for interactive modules to a website?
Answers: 1
question
Computers and Technology, 24.06.2019 13:00
Which one of the following functions is not available on the autosum tool? sum average if max
Answers: 3
question
Computers and Technology, 24.06.2019 15:30
What type of forensic evidence was recovered during the bomb set off at the new mexico facility on the video that was similar to the evidence obtained at the boston bombings and how did the evidence allow the researchers to connect other pieces of evidence to the same bomb?
Answers: 2
question
Computers and Technology, 24.06.2019 17:40
Pseudocode pld #6, pg. 117 start// declarations// number numbertoguess// number myguess; numbertoguess = 92// while myguess ! = numbertoguess// output " guess an integer number between 1 and 100"// input myguess// if (myguess == numbertoguess)// output "you guessed the correct number"// else// output "the number you guessed was incorrect. try again! "// end if// end while// output " for playing the guessing game. have a great day! "// stop
Answers: 3
You know the right answer?
A barcode scanner for Universal Product Codes (UPCs) verifies the 12-digit code scanned by compari...
Questions
question
History, 03.07.2019 01:00
question
Computers and Technology, 03.07.2019 01:00