No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
part time shipping/receiveing associate
- Interests
- chatting,programming,exercise and reading.
2 Posted Topics
[COLOR=Blue][B]hi.i've written a program that loads #'s into an array and sorts them.The end user then inputs a number and the program is supposed to perform a sequential search for the input number and tell wether it was found or not found.I'm hoping someone canhelp me with my sequential search.binary … | |
WHAT IS WRONG HERE?WHY WON'T THIS SORT? public class bubble { public static void main (String[] args) { boolean Finished; int[] intRand = new int[11]; int[] unSorted = new int[11]; int intStore; int i; Finished = false; i = 1; while (i < 11) { intRand[i] = (int)(java.lang.Math.random() * 100); … |
The End.