Only Getting 0s for an output on Array Assignment

716 Views Asked by At

I have an assignment and I need to write the code for this problem.

Write a program that reads numbers from the keyboard into an array of type int[] You may assume there will be 50 or fewer entries. Your program allows any amount of numbers to be entered up to 50 The output is to be a two column list of the distinct array elements The second column is a list of the frequencies of each element The list should be sorted in the first column largest to smallest.

I am currently getting the array to print, but I am getting two columns of 50 zeros. Any help?

ArraySort class

import java.util.*;

public class ArraySort {

    public static void main(String[] args) {
        Scanner keyboard = new Scanner(System.in);
        System.out.println("Please enter the numbers for your array.");
        int[][] d = new int [2][50];
        int[] a = new int [50];
        int[] b = new int [50];
        int[] c = new int [50];
        for(int index = 0; index < 50; index++)
        {
            a[index] = keyboard.nextInt();
        }
        ArraySort object = new ArraySort();
        object.sort(a);
        object.duplicate(a, b);
        object.frequency(a, c);



        for(int index = 0; index < 50; index++)
        {
            b[index] = d[0][index];
        }
        for(int x = 0 ; x < 50; x++)
        {
            c[x] = d[1][x];
        }
        for(int column = 0; column < 2; column++)
        {
            for(int row = 0; row < 50; row++)
            {
                System.out.print(d[column][row]);
            }
        }
    }


    public int[] sort(int [] a)
    {
        int temp = 0;
        for(int x = 0; x < 49; x++)
        {
            for(int y = 0; y < 49; y++)
            {
                if(a[y] < a[y+1])
                {
                    temp = a[y];
                    a[y] = a[y+1];
                    a[y+1] = temp;
                }
            }
        }
        return a;
    }
    public int[] duplicate(int [] a, int[] b)
    {
        int y = 0;
        for(int x = 0; x < 49; x++)
        {
            if(a[x] != a[x+1])
            {
                a[x] = b[y];
                y++;
            }
        }
        return b;
    }
    public int[] frequency(int [] a, int [] c)
    {
        int y = 1;
        int z = 0;
        for(int x = 0; x < 49; x++)
        {
            if(a[x] == a[x+1])
            {
                y++;
            }
            if(a[x]!= a[x+1])
            {
                y = c[z];
                z++;
                y = 0;
            }   
        }
        return c;
    }
}
1

There are 1 best solutions below

2
On

Indexing in java starts with 0, d[2][x] would require an array of the size [3][50]