该程序应该接收用户的所有五个数字,然后同时打印所有五组星号。我不知道如何编码,以便它同时打印星号。
这是我的程序到目前为止正在打印的内容:
export class Child{
arr: any = [];
someMethod(){
this.arr.push('new element');
this.arr = this.arr.slice();
}
}
此外,我还不能使用Array's,因为我们还没有介绍该章。
这就是我现在所拥有的并且正在运行。
import java.util.Scanner;
public class BarChart
{
public static void main(String[] args)
{
int i, j, n = 0;
Scanner input = new Scanner (System.in);
System.out.print("Enter a number between 1 and 30 ");
for (i = 0; i < 5; i++) {
n = input.nextInt();
if (n > 30 || n < 1) {
System.out.println("Number out of limits, enter a number between 1 and 30 ");
n = input.nextInt();
}
for (j = 0; j< n; j++)
System.out.print("*");
System.out.println();
}
System.out.println();
}
}