Search:

Type: Posts; User: CruiseDevice

Search: Search took 0.11 seconds.

  1. Re: error in my exception handling program. unable to understand this program , please help. Thanx in advance

    Is there any connection between packages and exception handling in java. Means is it necessary to create a package before trying exception handling examples?
  2. Re: error in my exception handling program. unable to understand this program , please help. Thanx in advance

    if(e.instanceof ArithmeticException)
    {
    System.out.println("Divide by zero");
    }
    if(e.instanceof ArrayIndexOutOfBounds)
    {


    It is showing error in there two loops.
  3. Re: error in my exception handling program. unable to understand this program , please help. Thanx in advance

    3114
  4. error in my exception handling program. unable to understand this program , please help. Thanx in advance

    package javaapplication6;
    import java.util.Scanner;
    public class JavaApplication6 {

    public static void main(String[] args) {

    int a,b,c;
    int arr[] = new...
Results 1 to 4 of 4