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

java example to show ArrayIndexOutOfBoundsExeption

import java.io.*;
import java.util.*;
class Nums
{
 public static void main(String args[])
 {
   int i=0,j=0;
try
{
   String s[]=new String[9];
   int b[]=new int[10];
   System.out.println("Enter the Name of 10 students:");
   Scanner in=new Scanner(System.in);
        for(i=0;i<10;i++)
    {
    s[i]=in.nextLine();
    }
    }
catch(ArrayIndexOutOfBoundsExeption e)
{
System.out.println("Program Not Terminated Exception Caught\n"+e);
String s[]=new String[10];
int b[]=new int[10];
     System.out.println("----CONTINUE----");
    System.out.println("Enter the Name of 10 students:");
        Scanner in=new Scanner(System.in);
        for(i=0;i<10;i++)
    {
    s[i]=in.nextLine();
    }
    System.out.println("Enter the Roll no of 10 students:");
    for(j=0;j<10;j++)
     {
      b[j]=in.nextInt();
       }

    i=j=0;
    System.out.println("Name and Roll No are:");
    while(i<10&&j<10)
    {
     System.out.println(s[i]+"\t"+b[j]);
     i++;j++;
    }
}

}
}

No comments:

Post a Comment