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...