Search:

Type: Posts; User: Arte7

Search: Search took 0.07 seconds.

  1. Re: Basic Java Sorting Algorithm (Selection/Insertion) help

    public static void main(String[] args) {
    int list[]=new int[100];
    for (int i=0; i<list.length; i++)
    {
    list[i]=((int)(Math.random()*1000)+1);
    }

    for (int i=0;...
  2. Basic Java Sorting Algorithm (Selection/Insertion) help

    n my Computer Science I class in high school, we have to make an array with 100 int values with a range of 1-1000:


    public static void main(String[] args)
    int list []=new int [100];
    for(int...
Results 1 to 2 of 2