Recent content by tshet

  1. T

    Java Solve Java Selection Sort Issues | Hi, I'm Working on Code

    Well, I've taken the structure of my bubble sort and put it into my selection sort. I'm just trying to change the code for the actual selection part. I'm just getting simple mistakes now..
  2. T

    Java Solve Java Selection Sort Issues | Hi, I'm Working on Code

    Hi, I'm currently working on my selection sort code, and I've come across some problems. i import java.util.Arrays; import java.io.*; public class SelectionSort { int a[]; static int n; public static void main(String[] args) { int array[] = { 5,3,9,7,1,8 }; n = 6...
Back
Top