package company;
        class Statistic
        {
           public static void main(String[] args)        
           {
               schools.Student[] s = new schools.Student[5];                   
               for(int j=0;j<s.length;j++)
               {
                 s[j] = new schools.Student("A"+j,100+j,10+j);                 
                 System.out.println(s[j].stu_name+" " + s[j].stu_code+" "+s[j].deptCode);               
               }
           }
        }
