Any help would be appreciated, this is for a 1st year Java programming class so we haven't learned any serious techniques, mainly just a foundation of sorts
Any ideas?
import java.util.*;
import javax.swing.*;
class lab8
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
int[] orig_array = new int[10];
System.out.print("Enter 10 Numbers ");
int k;
for(k=0;k<orig_array.length;k++)
{
orig_array[k]= input.nextInt();
}
}
public static int[] eliminateDuplicates(int[] numbers)
{
}
}


Sign In
Create Account

Back to top









