使用 for 循环创建圣诞树 [英] Creating a Christmas Tree using for loops

查看:76
本文介绍了使用 for 循环创建圣诞树的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用 for 循环和嵌套 for 循环制作圣诞树.对于我来说,我需要能够用 *.我已经尝试了无数次,但在制作一个时遇到了问题.这是我的代码:

I am trying to make a christmas tree using for loops and nested for loops. For me to do that I need to be able to make a pyramids with *. I have tried countless times and I am having problems making one. Here is my code:

for(int i=1;i<=10;i++){
    for(int j=10;j>i;j--){
        System.out.println(" ");   
    }

    for(int k=1;k<=i;k++){
        System.out.print("*");
    }

    for(int l=10;l<=1;l++){
        for(int h=1;h<=10;h++){
            System.out.print(" ");
        }
    }

    System.out.println();  
}

我想做的是:

     *
    ***
   *****
  *******

推荐答案

试试这个更简单的代码:

Try this much simpler code:

public class ChristmasTree {

 public static void main(String[] args) {

  for (int i = 0; i < 10; i++) {
   for (int j = 0; j < 10 - i; j++)
    System.out.print(" ");
   for (int k = 0; k < (2 * i + 1); k++)
    System.out.print("*");
   System.out.println();
  }
 }
}

它使用了 3 个循环:

It uses 3 loops:

  • 第一个为行数,
  • 第二个用于打印空格,
  • 第三个用于打印星号.

这篇关于使用 for 循环创建圣诞树的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆