Witshaper is the Professional (Computing Skills, English Learning and Soft Skills) Skill Development Training Center. We provide Professional IT Courses and Soft Skill Training in Dehradun to Students, Employees and organization. Who wish to pursue a career in IT Technology. Witshaper is led by a motivated team of IT experts and Soft Skill Professionals. We provide high quality trainings. Our Emphasis is on giving the practical knowledge to the students, so that they will get to know in depth and never forget what they opt, we provide to the students real learning environment. Witshaper prepares students and professionals to be the part of this growing industry. Be a part of Witshaper and get your dreams successful

Wednesday 20 May 2015

Write a Java program to enable the user to handle any chance of divide by zero exception

import java.io.*;
import java.util.*;
class Numz
{
public static void main(String args[])
{
   int i=0,a;
float r;
System.out.println("Enter the number to divide 100:");
Scanner in=new Scanner(System.in);
a=in.nextInt();
try
{
if(a==0)
{System.out.println("Program Terminated Exception Caught");
throw new Exception();
}
if(a!=0)
{
r=100/a;
System.out.println("Result is:"+r);
}
}
catch(Exception e)
{
System.out.println("Exception Caught is Divide By Zero");
}
}
}

No comments:

Post a Comment