Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in JAVA: ISBN-13 is a standard for identifying books. It uses 13 digits d_1 d_2 d_3 d_4 d_5 d_6 d_7 d_8 d_9 d_10 d_11 d_12

in JAVA: ISBN-13 is a standard for identifying books. It uses 13 digits d_1 d_2 d_3 d_4 d_5 d_6 d_7 d_8 d_9 d_10 d_11 d_12 d_13. The last digit d13 is a checksum, which is calculated from the other digits using the following formula:
10-(d_1+3d_2+d_3+3d_4+d_5+3d_6+d_7+3d_8+d_9+3d_10+d_11+3d_12)%10
If the checksum is 10, replace it with 0. Your program should read the input as a string. Here are sample runs:
image text in transcribed
ICS 108 - Object-Oriented Programming Lab # 4 - Loops Objectives: In this lab, the following topic will be covered: 1. Loops Task ISBN-13 is a standard for identifying books. It uses 13 digits d d dad dzdoddadadzodudizdis. The last digit dia is a checksum, which is calculated from the other digits using the following formula: 10- (d+ 3dz + dx + 3ds +de + 3de + dy + 3dg+de + 3d10 +d41 +3d12)%10 If the checksum is 10, replace it with 0. Your program should read the input as a string. Here are sample runs: Enter the first 12 digits of an ISBN-13 as a string: 978013213080 The ISBN-13 number is 9780132130806 Enter the first 12 digits of an ISBN-13 as a string: 978013213079 The ISBN-13 number is 9780132130790 Enter the first 12 digits of an ISBN-13 as a string: 97801320 97801320 is an invalid input

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

Oracle Database Administration The Essential Reference

Authors: Brian Laskey, David Kreines

1st Edition

1565925165, 978-1565925168

More Books

Students also viewed these Databases questions

Question

3. Identify the methods used within each of the three approaches.

Answered: 1 week ago