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, 23.06.2019 14:30
Choose the answers that best complete each sentence. on average,are more expensive than other kinds of postsecondary schools. the cost of room and board includes. to save money, some students attend auniversity in their home state.
Answers: 2
question
Computers and Technology, 24.06.2019 13:50
Write a program that performs a simple n-body simulation, called "jumping leprechauns." this simulation involves n leprechauns, numberd 1 to n. it maintains a gold value g_i for each leprechaun i, which begins with each leprechaun starting out with a million dollars worth of gold, that is, g_i = 1000000 for each i = 1,. in addition, the simulation also maintains, for each leprachaun,i, a place on the horizon, which is represented as a double-precision floating point number, x_i. in each iteration of the simulation, the simulation processes the leprachauns in order. processing a leprachaun i during its iteration begins by computing a new place on the horizon for i, which is determined by the assignment:
Answers: 3
question
Computers and Technology, 24.06.2019 15:30
Python. primary u.s. interstate highways are numbered 1-99. odd numbers (like the 5 or 95) go north/south, and evens (like the 10 or 90) go east/west. auxiliary highways are numbered 100-999, and service the primary highway indicated by the rightmost two digits. thus, the 405 services the 5, and the 290 services the 90. given a highway number, indicate whether it is a primary or auxiliary highway. if auxiliary, indicate what primary highway it serves. also indicate if the (primary) highway runs north/south or east/west.
Answers: 1
question
Computers and Technology, 25.06.2019 06:20
Horseback riders, bicyclists, and skateboarders the rules of right-of-way when they use the road ?
Answers: 1
You know the right answer?
/*(Business: check ISBN-10) An ISBN-10 (International Standard Book Number)consists of 10 digits: d1...
Questions
question
Computers and Technology, 28.08.2019 19:20
Questions on the website: 13722367