subject

/*(Business: check ISBN-10) 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) % 11If the checksum is 10, the last digit is denoted as X according to the ISBN-10convention. Write a program that prompts the user to enter the first 9 digits anddisplays the 10-digit ISBN (including leading zeros). Your program should readthe input as an integer. Here are sample runs:*/import java. util. Scanner;public class Exercise_03_09 { public static void main(String[] args) { Scanner input = new Scanner(System. in); // Prompt the user to enter the first 9 digits of a 10-digit ISBN System. out. print("Enter the first 9 digits of an ISBN as integer: "); int isbn = input. nextInt(); // Extract the digits of the ISBN int d1 = isbn / 100000000; int remainingDigits = isbn % 100000000; int d2 = remainingDigits / 10000000; remainingDigits %= 10000000; int d3 = remainingDigits / 1000000; remainingDigits %= 1000000; int d4 = remainingDigits / 100000; remainingDigits %= 100000; int d5 = remainingDigits / 10000; remainingDigits %= 10000; int d6 = remainingDigits / 1000; remainingDigits %= 1000; int d7 = remainingDigits / 100; remainingDigits %= 100; int d8 = remainingDigits / 10; remainingDigits %= 10; int d9 = remainingDigits; // Compute d10 int d10 = (d1 * 1 + d2 * 2 + d3 * 3 + d4 * 4 + d5 * 5 + d6 * 6 + d7 * 7 + d8 * 8 + d9 * 9) % 11; // Display the 10-digit ISBN System. out. println("The ISBN-10 number is " + d1 + d2 + d3 + d4 + d5 + d6 + d7 + d8 + d9); if (d10 == 10) System. out. println("X"); else System. out. println(d10); }}

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 11:00
Which law requires employers to provide safe working environments for their employees? a. civil rights act b. fair labor standards act c. occupational safety and health act d. wagner act
Answers: 1
question
Computers and Technology, 22.06.2019 12:50
You have just been hired as an information security engineer for a large, multi-international corporation. unfortunately, your company has suffered multiple security breaches that have threatened customers' trust in the fact that their confidential data and financial assets are private and secured. credit-card information was compromised by an attack that infiltrated the network through a vulnerable wireless connection within the organization. the other breach was an inside job where personal data was stolen because of weak access-control policies within the organization that allowed an unauthorized individual access to valuable data. your job is to develop a risk-management policy that addresses the two security breaches and how to mitigate these risks.requirementswrite a brief description of the case study. it requires two to three pages, based upon the apa style of writing. use transition words; a thesis statement; an introduction, body, and conclusion; and a reference page with at least two references. use a double-spaced, arial font, size 12.
Answers: 1
question
Computers and Technology, 22.06.2019 20:40
Write a program that begins by reading in a series of positive integers on a single line of input and then computes and prints the product of those integers. integers are accepted and multiplied until the user enters an integer less than 1. this final number is not part of the product. then, the program prints the product. if the first entered number is negative or 0, the program must print “bad input.” and terminate immediately. next, the program determines and prints the prime factorization of the product, listing the factors in increasing order. if a prime number is not a factor of the product, then it
Answers: 2
question
Computers and Technology, 23.06.2019 02:30
Rafael needs to add a title row to a table that he has inserted in word. what should he do? use the alignment options. use the merge and center option for all the cells in the top row. use the merge and center option on the first two cells in the top row. none of the above
Answers: 3
You know the right answer?
/*(Business: check ISBN-10) An ISBN-10 (International Standard Book Number)consists of 10 digits: d1...
Questions
question
Mathematics, 05.02.2022 14:00
Questions on the website: 13722363