import java.util.*;
class CatchBlock
{  
  public static void main(String args[])
  {  
   try
   {  
    Scanner sc = new Scanner(System.in);
	System.out.println("Enter Two Number : ");
	System.out.print(" First Number : ");
	 int n1 = sc.nextInt();
	System.out.print(" Second Number : ");
	 int n2 = sc.nextInt();
	 int div = n1 / n2;
	 
   System.out.println(" Result is = "+div);
   }  
   catch(ArithmeticException e)
   {
   System.out.println(" Second Number is 0 [zero] then divide is not possible.");   
   }  
 }  
}

INPUT
Enter  Two Number : 
 First Number : 10
 Second Number : 0

OUTPUT
Second Number is 0 [zero] then divide is not possible.

Leave a Reply

Subscribe to Posts | Subscribe to Comments

All Notes on BCA

All Notes  on BCA
BCA all subjects notes

Total Pageviews

Translate

Powered by Blogger.

Copyright © All Notes on BCA