Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Submission Instructions Solve each problem in a separate file. Compress all filesin one zipped file and submit it on BB. The name of each file

Submission Instructions Solve each problem in a separate file. Compress all filesin one zipped file and submit it on BB. The name of each file should be: q#_yourID.java, for example, q1_u000111.java. Problem 1: Check ISBN-10 Number An ISBN-10 (International Standard Book Number) consists of 10 digits: d1d2d3d4d5d6d7d8d9d10. The last digit, d10, is a checksum, which is calculated from the other nine digits using the following formula: (d1 * 1 + d2 * 2 + d3 * 3 + d4 * 4 + d5 * 5 + d6 * 6 + d7 * 7 + d8 * 8 + d9 * 9) % 11 If the checksum is 10, the last digit is denoted as X according to the ISBN-10 convention. Write a Java program that prompts the user to enter the first 9 digits and displays the 10-digit ISBN (including leading zeros). You have to solve this problem ~!!!!!!!! USING LOOPS !!!!!!!!!~image text in transcribed

Submission Instructions Solve each problem in a separate file. Compress all files in one zipped file and submitit on BB. The name of each file should be: q#yourl D.Java, for example, q1u000111.java. Problem 1: Check ISBN-10 Number An ISBN-10 (International Standard Book Number) consists of 10 digits: d1d2d3d4d5d6d7d8d9d10. The last digit, d10, is a checksum, which is calculated from the other nine digits using the following formula: (d1 * 1+d2 * 2 + d3 * 3 + d4 * 4 + d5 * 5 + d6 * 6 + d7 * 7 + d8 * 8 + d9 * 9) % 11 If the checksum is 10, the last digitis denoted as X according to the ISBN-10 convention Write a Java program that prompts the userto enter the first 9 digits and displays the 10-digit ISBN (including leading zeros). You have to solve this problem using loops. Sample Input/Output Enter the first 9 digits of an ISBN: 013601267 The ISBN-10 number is 0136012671 Enter the first 9 digits of an ISBN: 013031997 The ISBN-10 number is 013031997X Enter the first 9 digits of an ISBN: 0135042 You need to enter exactly 9 digits

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

Nested Relations And Complex Objects In Databases Lncs 361

Authors: Serge Abiteboul ,Patrick C. Fischer ,Hans-Jorg Schek

1st Edition

3540511717, 978-3540511717

More Books

Students also viewed these Databases questions