所以我有一个方法,我调用我的main,它采用10个数字的数组,并在嵌套的for循环中创建直方图输出。我无法弄清楚如何在行标题旁边获得正确数量的星号。该数组从先前的方法传递给该方法。谢谢!!
public static void outputHistogram(int [] list)
{
int k =0;
for(int i=0;i<=9;++i)
{
System.out.print((i*10+1) +"-"+(i*10+10)+":"+"\t");
for(int j=1; j<=i;++j)
System.out.print("*");
System.out.println();
}
}
答案 0 :(得分:2)
如果您打算使用list
,那么您可能会有一个for
循环,如下所示: -
for(int i=0;i<list.length;i++)
并且第二个for
循环应该是这样的: -
for(int j=0; j<list[i];j++)
答案 1 :(得分:1)
您甚至不在outputHistorgram方法中的任何位置使用您的列表。我不确切知道这应该产生什么,但也许像这样做for循环可能会有所帮助:
for(int i : list)
如果这不正确,请提供示例输入和输出。
答案 2 :(得分:1)
您在第二个for循环中的测试需要为j < list[i]
答案 3 :(得分:0)
我想你想这样做。
public static void outputHistogram(int [] list)
{
int k =0;
for(int i=0;i<=9;++i)
{
System.out.print((i*10+1) +"-"+(i*10+10)+":"+"\t");
for(int j=1; j<=(i*10+10);++j)
System.out.print("*");
System.out.println();
}
}
答案 4 :(得分:0)
import java.util.Scanner;
class Histogram
{
private int count[]=new int[10]; // count array will keep elements of element
// in particular range;
public void showHistogram(int elements[]) // for example 27 15 34 22 11 11 19
{ // in above input there is count[0]=0;
for(int i=0;i<elements.length;i++) // count[1]=4 and count[2]=2 and count[3]=1;
{
if(elements[i]>=0 && elements[i]<50)
{
if(elements[i]<10)
{
count[0]++;
}
else if(elements[i]>=10 && elements[i]<20)
{
count[1]++;
}
else if(elements[i]>=20 && elements[i]<30)
{
count[2]++;
}
else if(elements[i]>=30 && elements[i]<40)
{
count[3]++;
}
else
{
count[4]++;
}
}
else if(elements[i]>=50 &&elements[i]<=100)
{
if(elements[i]<60)
{
count[5]++;
}
else if(elements[i]>=60 && elements[i]<70)
{
count[6]++;
}
else if(elements[i]>=70 && elements[i]<80)
{
count[7]++;
}
else if(elements[i]>=80 && elements[i]<90)
{
count[8]++;
}
else
{
count[9]++;
}
}
}
showHistogram1();
}
private void showHistogram1()
{
System.out.println("Histogram of the elements:");
for(int i=0;i<count.length;i++) // this loop will print line
{
for(int j=0;j<count[i];j++) // this will print elements element(*)
{ // at each line.
System.out.print("* ");
}
if(count[i]!=0) // if line does'nt contain zero
System.out.println(""); // then if will change the row;
}
}
}
/*
in above code if count[i]=zero means if there is elements
element in particular range say [0-9] then it will
elementst jump on next line;
*/
class HistogramGenerator //Question3
{
public static void main(String args[])
{
Histogram hg=new Histogram();
System.out.println("Enter the elements of Elements want in a Histogram:");
Scanner sc=new Scanner(System.in);
int noOfElements=sc.nextInt();
int histogramElements[]=new int[noOfElements];
System.out.println("Enter the Elements for Histogram:");
for(int i=0;i<noOfElements;i++)
{
histogramElements[i]=sc.nextInt();
}
hg.showHistogram(histogramElements);
}
}