Dear folks The following program works fine but when i try to calculate the average of the int arrays it gives the 'arrays out of bound exceptions'. Could anybody helps me how to rectify this problem. Or suggest me how can i calculate the average of int arrays in the last of my output. Thanks in advance.
Raghavendra Holla
Ranch Hand
Joined: Jun 02, 2000
Posts: 58
posted
0
Simple.. problem is with your statement average += randomNo[ i ] ; is out side the loop and i at that time is 12 !!!. Put it inside the loop.
Rashid Ali
Ranch Hand
Joined: Jan 16, 2001
Posts: 349
posted
0
Great! thanks it's solved. I was doing so with sum but not with average. It's perfectly running now. Thanks again. Raashed