Java程序绘制两座山

时间:2014-02-12 02:23:39

标签: java

Scanner scanner =  new Scanner(System.in);
    int row = scanner.nextInt();
    for(int i = 0; i < row; i++) {
        int column = 2 * row - 1;
        for(int j = 0; j < column; j++) {
            System.out.print("*");
        }
        System.out.print("\n");

这是我的代码,我设法根据用户的输入打印出多个星星,但我不知道如何打印出越来越多的星星。这个想法应该知道要打印的最大星数,然后打印出空行 - &gt;明星 - &gt;空行。有人可以给我一些想法谢谢!

0 个答案:

没有答案