Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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

The Database Experts Guide To Database 2

Authors: Bruce L. Larson

1st Edition

0070232679, 978-0070232679

Students also viewed these Databases questions

Question

Discuss the history of human resource management (HRM).

Answered: 1 week ago