Question
Write a well-documented (commented) program that asks the user for a 9-digit integer, computes its checksum, and then prints the corresponding ISBN number. The International
-
Write a well-documented (commented) program that asks the user for a 9-digit integer, computes its checksum, and then prints the corresponding ISBN number.
-
The International Standard Book Number (ISBN) is a 10-digit code that uniquely specifies a book. The rightmost digit is a checksum digit that can be uniquely determined from the other 9 digits, from the condition that d1 + 2d2 +3d3 + ... + 10d10 must be a multiple of 11 (here di denotes the ith digit from the right).
-
The checksum digit d1 can be any value from 0 to 10. The ISBN convention is to use the character X to denote 10.
-
The checksum digit corresponding to 032149805 is 4 since 4 is the only value of x between 0 and 10 (both inclusive), for which 100 + 93 + 82 + 71 + 64 + 59 +48 +30 + 25 + 1x is a multiple of 11.
-
-
Sample runs would be as follows.
-
Sample run 1:
Please enter a nine digit integer: 013376940
The corresponding ISBN number would be 0133769402.
-
Sample run 2:
Please enter a nine digit integer: 013380780
The corresponding ISBN number would be 0133807800.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started