ISBN Number Program In Java

In this tutorial you will learn about the ISBN Number Program In Java and its application with practical example.

In this tutorial, we will learn to create a Java Program to find ISBN Number Program In Java

Table Of Contents

Prerequisites

Before starting with this tutorial we assume that you are best aware of the following Java programming topics:

  • Java Operators.
  • Basic Input and Output function in Java.
  • Class and Object in Java.
  • Basic Java programming.
  • If-else statements in Java.
  • Function in java.

International Standard Book Number (ISBN) IN JAVA Program

In world every book has a number called ‘International Standard Book Number (ISBN).It is unique number. With the help of this number, we can easily  find any book in the  world. ISBN is  a 10 digit number. The number is legal if sum of  (1*digit1 + 2*digit2 + 3*digit3 + 4*digit4 + 5*digit5 + 6*digit6 + 7*digit7 + 8*digit8 + 9*digit9 + 10*digit10)  is divisible by sum%11==0 gives remainder Zero.

Let’s take a Number = 0306406152 the find sum
Sum = (0*1) + (3*2) + (0*3) + (6*4) + (4*5) + (0*6) + (6*7) + (1*8) + (5*9) + (2*10)
–“– = 0 + 6 + 0 + 24 + 20 + 0 + 42 + 8 + 45 + 20
Sum = 165, and 165 / 11 = 15. So 165 is divisible by 11 then the number is International Standard Book Number (ISBN).

Java Program to check the number is ISBN Number Program or not.

In this program we would find the given number is tech number first will take the input from the user and check whether it is Tech number or not. If it’s not then the program will show the output as it’s not a tech number.

Output

In the above program, we have first declared and initialized a set variables required in the program.

  • isbn_no = it will hold entered number.
  • c = 0 itr will count length.
  • i=  for iteration .
  • c= calculate the sum of number.

After that we take 10 digit number form user.

Then we check that  given number is a  10  digit number or not.

if not we we exit from program

else we proceed the logic for ISbn number as shown in image below.

Find isbn by  multiplying each digit from left to right by 1, 2, 3,…….,10.

and at last we will check if number is completely divisible by 11 then it is  a leagal isbn number if not it is not a isbn number.

In this tutorial we have learn about the ISBN Number Program In Java and its application with practical example. I hope you will like this tutorial.