View Single Post
  #2 (permalink)  
Old 07-25-2007, 06:54 AM
neel5_kumar neel5_kumar is offline
Member
 
Join Date: Jul 2007
Posts: 1
neel5_kumar is on a distinguished road
try either
(int i=0;i<4;i++)//as index starts with 0
or
(int i=0;i<numbers.length;i++)//much better
Reply With Quote