Guest User

Untitled

a guest
Jan 23rd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. for(int indCountArray = 0; indCountArray < counterArray.length; indCountArray++)
  2. {
  3. int valCountArray = counterArray[indCountArray];
  4.  
  5. System.out.println("Value in the counter Array " + valCountArray);
  6. for(int indexofA = 0; indexofA < arrayToSort.length && valCountArray >= 0 ; indexofA++)
  7. {
  8. arrayToSort[indexofA] = indCountArray;
  9. valCountArray--;
  10. }
  11. }
Add Comment
Please, Sign In to add comment