I am making a histogram project for school that loops through an array and creates a * for every time a number comes up for a given section of numbers. The output should look like this:
1-10 | *****
11-20 | ****
21-30 | *
31-40 | ***
41-50 | *
51-60 | *
61-70 | *
71-80 |
81-90 | *
91-100 | ********
for an array that is:
int array[] = {19, 4, 15, 7, 11, 9, 13, 5, 45, 56, 1, 67, 90, 98, 32, 36, 33, 25, 99, 95, 97, 98, 92, 94, 93, 105};
I am trying to figure out a way to make this code more OOPy. However, I can't figure out a way to.
Here is my code:
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
int array[] = {19, 4, 15, 7, 11, 9, 13, 5, 45, 56, 1, 67, 90, 98, 32, 36, 33, 25, 99, 95, 97, 98, 92, 94, 93, 105};
histogram(array);
}
public static void histogram(int[] input) {
String output1 = new String ();
String output2 = new String ();
String output3 = new String ();
String output4 = new String ();
String output5 = new String ();
String output6 = new String ();
String output7 = new String ();
String output8 = new String ();
String output9 = new String ();
String output10 = new String ();
for (int x = 0; x < input.length; x++) {
if (input[x] <= 100) {
if (input[x] >= 1 && input [x] <= 10) output1 += "*";
if (input[x] >= 11 && input [x] <= 20) output2 += "*";
if (input[x] >= 21 && input [x] <= 30) output3 += "*";
if (input[x] >= 31 && input [x] <= 40) output4 += "*";
if (input[x] >= 41 && input [x] <= 50) output5 += "*";
if (input[x] >= 51 && input [x] <= 60) output6 += "*";
if (input[x] >= 61 && input [x] <= 70) output7 += "*";
if (input[x] >= 71 && input [x] <= 80) output8 += "*";
if (input[x] >= 81 && input [x] <= 90) output9 += "*";
if (input[x] >= 91 && input [x] <= 100) output10 += "*";
}
else {
break;
}
}
System.out.println("1-10 | " + output1);
System.out.println("11-20 | " + output2);
System.out.println("21-30 | " + output3);
System.out.println("31-40 | " + output4);
System.out.println("41-50 | " + output5);
System.out.println("51-60 | " + output6);
System.out.println("61-70 | " + output7);
System.out.println("71-80 | " + output8);
System.out.println("81-90 | " + output9);
System.out.println("91-100 | " + output10);
}
}