Search:

Type: Posts; User: Java7

Search: Search took 0.07 seconds.

  1. Re: Insertion Sort with String Array error in the While loop at the bottom of the code

    The error I get says:

    bad operand types for binary operator '>'
    first type: java.lang.String
    second type: java.lang.String
    ----
    (Alt-Enter shows hints)

    Thank you for looking at the...
  2. Re: Insertion Sort with String Array error in the While loop at the bottom of the code

    package InsertionSort;

    public class InsertionSort {

    public static void main(String a[]){
    int i;
    String array[] = {"I","N","S","E","R","T","I","O","N"};

    System.out.println("Before...
  3. Insertion Sort with String Array error in the While loop at the bottom of the code

    package InsertionSort;

    public class InsertionSort {

    public static void main(String a[]){
    int i;
    String array[] = {"I","N","S","E","R","T","I","O","N"};

    System.out.println("Before...
Results 1 to 3 of 3