Before sortingArray
(
[0] => 60
[1] => 483
[2] => 281
[3] => 224
[4] => 198
[5] => 790
[6] => 698
[7] => 400
[8] => 709
[9] => 168
)
After sorting by using bubble sortArray
(
[0] => 60
[1] => 168
[2] => 198
[3] => 224
[4] => 281
[5] => 400
[6] => 483
[7] => 698
[8] => 709
[9] => 790
)
MIN Value : 60
Average Value : 401.1