Search:

Type: Posts; User: Username

Search: Search took 0.06 seconds.

  1. Thread: selectionsort

    by Username
    Replies
    1
    Views
    1,106

    selectionsort

    public class selectionSort{

    public static void main(String[]args){

    double[] array = {1, 9, 4.5, 6.6, 5.7,};
    selectionSort(array);

    }

    ...
  2. Thread: array copy!!!

    by Username
    Replies
    4
    Views
    1,782

    Re: array copy!!!

    I was missing one of the last statements in the arraycopy.
    I
    got it thank you!!
  3. Thread: array copy!!!

    by Username
    Replies
    4
    Views
    1,782

    Re: array copy!!!

    ArrayCopy.java:11: error: method arraycopy in class System cannot be applied to given types;
    System.arraycopy(sourceArray, 0, targetArray, 0);
    ^
    required:...
  4. Thread: array copy!!!

    by Username
    Replies
    4
    Views
    1,782

    array copy!!!

    ok so I am trying to learn about arrays, and I found thee on a book that you can use the arraycopy method to do it more simple
    so I did these code with the directions It is really not a big deal but...
  5. Replies
    2
    Views
    949

    object oriented program help!!!

    client program
    so basically these is it,
    it is suppost to first

    create an array of type string as the one I did
    then create 10 rectangles with random height and width and color ( the color...
  6. Replies
    1
    Views
    1,118

    client program rectangle

    I have been trying to do these program for so long I think I almost got it all but there are some things I am not sure about,
    so I am trying to print the number of rectangles created, but I do not...
Results 1 to 6 of 6