Question: Using C++ ( Business: check ISBN-10 ) Rewrite the program for Programming Exercise 3.35 by entering the ISBN number as a string. Question3.35 is (

Using C++ ( Business: check ISBN-10 ) Rewrite the program for Programming Exercise 3.35 by entering the ISBN number as a string.

Question3.35 is

( Business: check ISBN-10 ) An ISBN-10 (International Standard Book Number) consists of 10 digits: d 1 d 2 d 3 d 4 d 5 d 6 d 7 d 8 d 9 d 10 . The last digit, d 10 , is a checksum, which is calculated from the other nine digits using the following formula:( d 1 * 1 + d 2 * 2 + d 3 * 3 + d 4 * 4 + d 5 * 5 + d 6 * 6 + d 7 * 7 + d 8 * 8 + d 9 * 9) % 11 If the checksum is 10 , the last digit is denoted as X according to the ISBN-10 convention. Write a program that prompts the user to enter the first 9 digits and displays the 10-digit ISBN (including leading zeros). Your program should read the input as an integer. Here are sample runs: Enter the first 9 digits of an ISBN as integer: 013601267 The ISBN-10 number is 0136012671Enter the first 9 digits of an ISBN as integer: 013031997 The ISBN-10 number is 013031997X .

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!